Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8ScriptRunner.cpp

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Bug fix Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 // Failed resources should never get this far. 320 // Failed resources should never get this far.
321 ASSERT(!resource->errorOccurred()); 321 ASSERT(!resource->errorOccurred());
322 ASSERT(streamer->isFinished()); 322 ASSERT(streamer->isFinished());
323 ASSERT(!streamer->streamingSuppressed()); 323 ASSERT(!streamer->streamingSuppressed());
324 return WTF::bind<v8::Isolate*, v8::Local<v8::String>, v8::ScriptOrigin>(post StreamCompile, cacheOptions, resource->cacheHandler(), streamer); 324 return WTF::bind<v8::Isolate*, v8::Local<v8::String>, v8::ScriptOrigin>(post StreamCompile, cacheOptions, resource->cacheHandler(), streamer);
325 } 325 }
326 } // namespace 326 } // namespace
327 327
328 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(const ScriptSourceCode& source, v8::Isolate* isolate, AccessControlStatus accessControlStatus, V8CacheO ptions cacheOptions) 328 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(const ScriptSourceCode& source, v8::Isolate* isolate, AccessControlStatus accessControlStatus, V8CacheO ptions cacheOptions)
329 { 329 {
330 if (source.source().length() >= v8::String::kMaxLength) { 330 if (!source.source().isNull() && source.source().length() >= v8::String::kMa xLength) {
haraken 2015/11/24 11:15:41 I wonder why we need this change.
hajimehoshi 2015/11/26 10:49:13 This is my mistake... Done.
331 V8ThrowException::throwGeneralError(isolate, "Source file too large."); 331 V8ThrowException::throwGeneralError(isolate, "Source file too large.");
332 return v8::Local<v8::Script>(); 332 return v8::Local<v8::Script>();
333 } 333 }
334 return compileScript(v8String(isolate, source.source()), source.url(), sourc e.sourceMapUrl(), source.startPosition(), isolate, source.resource(), source.str eamer(), source.resource() ? source.resource()->cacheHandler() : nullptr, access ControlStatus, cacheOptions); 334 return compileScript(v8String(isolate, source.source()), source.url(), sourc e.sourceMapUrl(), source.startPosition(), isolate, source.resource(), source.str eamer(), source.resource() ? source.resource()->cacheHandler() : nullptr, access ControlStatus, cacheOptions);
335 } 335 }
336 336
337 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(const String& code, con st String& fileName, const String& sourceMapUrl, const TextPosition& textPositio n, v8::Isolate* isolate, CachedMetadataHandler* cacheMetadataHandler, AccessCont rolStatus accessControlStatus, V8CacheOptions v8CacheOptions) 337 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(const CompressableStrin g& code, const String& fileName, const String& sourceMapUrl, const TextPosition& textPosition, v8::Isolate* isolate, CachedMetadataHandler* cacheMetadataHandler , AccessControlStatus accessControlStatus, V8CacheOptions v8CacheOptions)
338 { 338 {
339 if (code.length() >= v8::String::kMaxLength) { 339 if (!code.isNull() && code.length() >= v8::String::kMaxLength) {
haraken 2015/11/24 11:15:41 Ditto.
hajimehoshi 2015/11/26 10:49:13 Done.
340 V8ThrowException::throwGeneralError(isolate, "Source file too large."); 340 V8ThrowException::throwGeneralError(isolate, "Source file too large.");
341 return v8::Local<v8::Script>(); 341 return v8::Local<v8::Script>();
342 } 342 }
343 return compileScript(v8String(isolate, code), fileName, sourceMapUrl, textPo sition, isolate, nullptr, nullptr, cacheMetadataHandler, accessControlStatus, v8 CacheOptions); 343 return compileScript(v8String(isolate, code), fileName, sourceMapUrl, textPo sition, isolate, nullptr, nullptr, cacheMetadataHandler, accessControlStatus, v8 CacheOptions);
344 } 344 }
345 345
346 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(v8::Local<v8::String> c ode, const String& fileName, const String& sourceMapUrl, const TextPosition& scr iptStartPosition, v8::Isolate* isolate, ScriptResource* resource, ScriptStreamer * streamer, CachedMetadataHandler* cacheHandler, AccessControlStatus accessContr olStatus, V8CacheOptions cacheOptions, bool isInternalScript) 346 v8::MaybeLocal<v8::Script> V8ScriptRunner::compileScript(v8::Local<v8::String> c ode, const String& fileName, const String& sourceMapUrl, const TextPosition& scr iptStartPosition, v8::Isolate* isolate, ScriptResource* resource, ScriptStreamer * streamer, CachedMetadataHandler* cacheHandler, AccessControlStatus accessContr olStatus, V8CacheOptions cacheOptions, bool isInternalScript)
347 { 347 {
348 TRACE_EVENT2("v8,devtools.timeline", "v8.compile", "fileName", fileName.utf8 (), "data", InspectorCompileScriptEvent::data(fileName, scriptStartPosition)); 348 TRACE_EVENT2("v8,devtools.timeline", "v8.compile", "fileName", fileName.utf8 (), "data", InspectorCompileScriptEvent::data(fileName, scriptStartPosition));
349 TRACE_EVENT_SCOPED_SAMPLING_STATE("v8", "V8Compile"); 349 TRACE_EVENT_SCOPED_SAMPLING_STATE("v8", "V8Compile");
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 { 494 {
495 return cacheTag(CacheTagParser, cacheHandler); 495 return cacheTag(CacheTagParser, cacheHandler);
496 } 496 }
497 497
498 unsigned V8ScriptRunner::tagForCodeCache(CachedMetadataHandler* cacheHandler) 498 unsigned V8ScriptRunner::tagForCodeCache(CachedMetadataHandler* cacheHandler)
499 { 499 {
500 return cacheTag(CacheTagCode, cacheHandler); 500 return cacheTag(CacheTagCode, cacheHandler);
501 } 501 }
502 502
503 } // namespace blink 503 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698