Home
last modified time | relevance | path

Searched refs:V8 (Results 1 – 25 of 110) sorted by relevance

12345

/external/v8/src/
Dv8-counters.h38 HT(gc_compactor, V8.GCCompactor) \
39 HT(gc_scavenger, V8.GCScavenger) \
40 HT(gc_context, V8.GCContext) /* GC context cleanup time */ \
42 HT(parse, V8.Parse) \
43 HT(parse_lazy, V8.ParseLazy) \
44 HT(pre_parse, V8.PreParse) \
46 HT(compile, V8.Compile) \
47 HT(compile_eval, V8.CompileEval) \
48 HT(compile_lazy, V8.CompileLazy) \
50 HT(rewriting, V8.Rewriting) \
[all …]
Dv8.cc41 bool V8::is_running_ = false;
42 bool V8::has_been_setup_ = false;
43 bool V8::has_been_disposed_ = false;
44 bool V8::has_fatal_error_ = false;
46 bool V8::Initialize(Deserializer *des) { in Initialize()
129 void V8::SetFatalError() { in SetFatalError()
135 void V8::TearDown() { in TearDown()
158 uint32_t V8::Random() { in Random()
177 bool V8::IdleNotification() { in IdleNotification()
188 Smi* V8::RandomPositiveSmi() { in RandomPositiveSmi()
Dapi.cc78 i::V8::FatalProcessOutOfMemory(NULL); \
129 void i::V8::FatalProcessOutOfMemory(const char* location) { in FatalProcessOutOfMemory()
172 i::V8::SetFatalError(); in FatalProcessOutOfMemory()
183 void V8::SetFatalErrorHandler(FatalErrorCallback that) { in SetFatalErrorHandler()
191 i::V8::SetFatalError(); in ReportApiFailure()
196 bool V8::IsDead() { in IsDead()
197 return i::V8::IsDead(); in IsDead()
235 return !i::V8::IsRunning() in IsDeadCheck()
236 && i::V8::IsDead() ? ReportV8Dead(location) : false; in IsDeadCheck()
256 if (i::V8::IsRunning()) { in EnsureInitialized()
[all …]
Dd8.cc232 return String::New(V8::GetVersion()); in Version()
345 V8::SetCounterFunction(LookupCounter); in MapCounters()
346 V8::SetCreateHistogramFunction(CreateHistogram); in MapCounters()
347 V8::SetAddHistogramSampleFunction(AddHistogramSample); in MapCounters()
409 V8::SetCounterFunction(LookupCounter); in Initialize()
410 V8::SetCreateHistogramFunction(CreateHistogram); in Initialize()
411 V8::SetAddHistogramSampleFunction(AddHistogramSample); in Initialize()
574 printf("V8 version %s [console: %s]\n", V8::GetVersion(), editor->name()); in RunShell()
Dallocation.cc39 if (result == NULL) V8::FatalProcessOutOfMemory("Malloced operator new"); in New()
50 V8::FatalProcessOutOfMemory("Out of memory"); in FatalProcessOutOfMemory()
Dheap-inl.h311 v8::internal::V8::FatalProcessOutOfMemory("CALL_AND_RETRY_0"); \
319 v8::internal::V8::FatalProcessOutOfMemory("CALL_AND_RETRY_1"); \
332 v8::internal::V8::FatalProcessOutOfMemory("CALL_AND_RETRY_2"); \
/external/v8/tools/visual_studio/
DREADME.txt10 Base V8 library containing all the V8 code but no JavaScript library code. This
15 V8 library containing all the V8 and JavaScript library code embedded as source
16 which is compiled as V8 is running.
20 Executable v8_mksnapshot.exe for building a heap snapshot from a running V8.
29 V8 library containing all the V8 and JavaScript library code embedded as a heap
30 snapshot instead of source to be compiled as V8 is running. Using this library
38 With regard to Platform SDK version V8 has no specific requriments and builds
50 A project which uses V8 should then depend on v8_snapshot.vcproj.
52 If V8 without snapshot if preferred only v8_base.vcproj and v8.vcproj are
53 required and a project which uses V8 should depend on v8.vcproj.
[all …]
/external/webkit/WebCore/
DAndroid.derived.v8bindings.mk66 …bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include css --incl…
67 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/css/%.idl $(js_binding_scripts)
128 …bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --incl…
129 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/dom/%.idl $(js_binding_scripts)
222 …bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --incl…
223 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/%.idl $(js_binding_scripts)
260 …bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --incl…
261 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/html/canvas/%.idl $(js_binding_scripts)
274 …bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator V8 --include dom --incl…
275 $(GEN): $(intermediates)/bindings/V8%.h : $(LOCAL_PATH)/loader/appcache/%.idl $(js_binding_scripts)
[all …]
/external/webkit/WebKit/android/WebCoreSupport/
DV8Counters.cpp26 #if USE(V8)
85 v8::V8::SetCounterFunction(counterForName); in initCounters()
86 v8::V8::SetCreateHistogramFunction(createHistogram); in initCounters()
87 v8::V8::SetAddHistogramSampleFunction(addHistogramSample); in initCounters()
/external/v8/test/cctest/
Dtest-thread-termination.cc43 v8::V8::TerminateExecution(); in TerminateCurrentThread()
152 v8::V8::TerminateExecution(); in Run()
185 v8_thread_id_ = v8::V8::GetCurrentThreadId(); in Run()
209 v8::V8::Initialize(); in TEST()
222 v8::V8::TerminateExecution(thread1.GetV8ThreadId()); in TEST()
223 v8::V8::TerminateExecution(thread2.GetV8ThreadId()); in TEST()
238 v8::V8::TerminateExecution(); in TerminateOrReturnObject()
Dtest-regexp.cc62 V8::Initialize(NULL); in CheckParse()
72 V8::Initialize(NULL); in Parse()
85 V8::Initialize(NULL); in CheckSimple()
103 V8::Initialize(NULL); in CheckMinMaxMatch()
129 V8::Initialize(NULL); in TEST()
363 V8::Initialize(NULL); in ExpectError()
377 V8::Initialize(NULL); in TEST()
473 V8::Initialize(NULL); in Compile()
696 v8::V8::Initialize(); in TEST()
730 v8::V8::Initialize(); in TEST()
[all …]
Dtest-serialize.cc257 v8::V8::Initialize(); in TEST()
265 v8::V8::Initialize(); in TEST()
360 v8::V8::Initialize(); in TEST()
478 v8::V8::Initialize(); in TEST()
558 v8::V8::Initialize(); in TEST()
Dtest-threads.cc37 v8::V8::Initialize(); in TEST()
/external/webkit/WebKit/chromium/src/
DWebBindings.cpp40 #if USE(V8)
132 #if USE(V8) in initializeVariantWithStringCopy()
181 #if USE(V8) in unregisterObject()
207 #if USE(V8)
302 #if USE(V8) in getDragData()
318 #if USE(V8) in getRange()
DProfilerAgentImpl.cpp40 m_delegate->didGetActiveProfilerModules(v8::V8::GetActiveProfilerModules()); in getActiveProfilerModules()
46 const int readSize = v8::V8::GetLogLines(position, buffer, sizeof(buffer) - 1); in getLogLines()
/external/webkit/WebCore/bindings/v8/
DScriptProfiler.cpp41 v8::V8::ResumeProfiler(); in start()
46 v8::V8::PauseProfiler(); in stop()
DV8DOMWindowShell.cpp268 v8::V8::IgnoreOutOfMemoryException(); in initContextIfNeeded()
269 v8::V8::SetFatalErrorHandler(reportFatalErrorInV8); in initContextIfNeeded()
271 v8::V8::SetGlobalGCPrologueCallback(&V8GCController::gcPrologue); in initContextIfNeeded()
272 v8::V8::SetGlobalGCEpilogueCallback(&V8GCController::gcEpilogue); in initContextIfNeeded()
274 v8::V8::AddMessageListener(&V8ConsoleMessage::handler); in initContextIfNeeded()
276 v8::V8::SetFailedAccessCheckCallbackFunction(reportUnsafeJavaScriptAccess); in initContextIfNeeded()
DV8Binding.cpp62 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * string.length()); in WebCoreStringResource()
73 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * string.length()); in WebCoreStringResource()
84 v8::V8::AdjustAmountOfExternalAllocatedMemory(reducedExternalMemory); in ~WebCoreStringResource()
105 v8::V8::AdjustAmountOfExternalAllocatedMemory(2 * m_atomicString.length()); in atomicString()
DWorkerContextExecutionProxy.cpp126 v8::V8::IgnoreOutOfMemoryException(); in initV8IfNeeded()
127 v8::V8::SetFatalErrorHandler(reportFatalErrorInV8); in initV8IfNeeded()
/external/v8/samples/
Dshell.cc50 v8::V8::SetFlagsFromCommandLine(&argc, argv, true); in RunMain()
108 v8::V8::Dispose(); in main()
194 return v8::String::New(v8::V8::GetVersion()); in Version()
222 printf("V8 version %s\n", v8::V8::GetVersion()); in RunShell()
Dlineprocessor.cc128 v8::V8::SetFlagsFromCommandLine(&argc, argv, true); in RunMain()
214 v8::V8::SetFlagsFromString(auto_break_param, strlen(auto_break_param)); in RunMain()
307 v8::V8::Dispose(); in main()
/external/v8/benchmarks/
DREADME.txt1 V8 Benchmark Suite
4 This is the V8 benchmark suite: A collection of pure JavaScript
5 benchmarks that we have used to tune V8. The licenses for the
/external/v8/
DChangeLog5 Fix a bug with register names on 64-bit V8 (issue 615).
15 Added SetPrototype method in the public V8 API.
197 Add String::Concat(Handle<String> left, Handle<String> right) to the V8 API.
199 Fix GYP-based builds of V8.
217 stack limit now needs to be set to each thread thich is used with V8.
221 Ensure V8 is initialized before locking and unlocking threads.
299 Reduced the amount of memory consumed by V8.
324 notifications when V8 has not yet been initialized.
345 a low memory situation to V8.
362 Support for using the V8 profiler when V8 is embedded in a Windows DLL.
[all …]
/external/v8/test/mozilla/
Dmozilla.status1 # Copyright 2009 the V8 project authors. All rights reserved.
51 # situation. The test fails in V8 with an exception and takes a long
195 # This section is for tests that fail in both V8 and JSC. Thus they
196 # have been determined to be incompatible between Mozilla and V8/JSC.
226 # toPrecision argument restricted to range 1..21 in JSC/V8
229 # Array.prototype.slice with zero arguments return undefined in JSC/V8,
256 # an open V8 bug 676063 about this.
448 # 'native' *is* a keyword in V8.
537 # handled in V8/JSC. V8 follows IE behavior and introduce
546 # Function is deletable in V8 and JSC.
[all …]
/external/v8/include/
Dv8.h2193 friend class V8; variable
2200 class V8EXPORT V8 {
2477 V8();
2992 return Persistent<T>(reinterpret_cast<T*>(V8::GlobalizeReference(p)));
2999 return V8::IsGlobalNearDeath(reinterpret_cast<internal::Object**>(**this));
3006 return V8::IsGlobalWeak(reinterpret_cast<internal::Object**>(**this));
3013 V8::DisposeGlobal(reinterpret_cast<internal::Object**>(**this));
3022 V8::MakeWeak(reinterpret_cast<internal::Object**>(**this),
3029 V8::ClearWeak(reinterpret_cast<internal::Object**>(**this));

12345