HomeSort by relevance Sort by last modified time
    Searched refs:ISOLATE (Results 1 - 25 of 36) sorted by null

1 2

  /external/v8/src/
heap-inl.h 32 #include "isolate.h"
493 Isolate* Heap::isolate() { function in class:v8::internal::Heap
494 return reinterpret_cast<Isolate*>(reinterpret_cast<intptr_t>(this) -
495 reinterpret_cast<size_t>(reinterpret_cast<Isolate*>(4)->heap()) + 4);
513 #define CALL_AND_RETRY(ISOLATE, FUNCTION_CALL, RETURN_VALUE, RETURN_EMPTY)\
523 ISOLATE->heap()->CollectGarbage(Failure::cast(__maybe_object__)-> \
532 ISOLATE->counters()->gc_last_resort_from_handles()->Increment(); \
533 ISOLATE->heap()->CollectAllAvailableGarbage("last resort gc"); \
548 #define CALL_HEAP_FUNCTION(ISOLATE, FUNCTION_CALL, TYPE)
    [all...]
log.cc 54 explicit SlidingStateWindow(Isolate* isolate);
85 explicit Profiler(Isolate* isolate);
124 Isolate* isolate_;
148 void StackTracer::Trace(Isolate* isolate, TickSample* sample) {
149 ASSERT(isolate->IsInitialized());
155 Isolate::js_entry_sp(isolate->thread_local_top())
1648 Isolate* isolate = Isolate::Current(); local
    [all...]
platform-cygwin.cc 159 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
264 i::Isolate* isolate = ISOLATE; local
298 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
686 if (!sampler->isolate()->IsInitialized()) return;
694 if (!sampler->isolate()->IsInitialized()) return;
695 sampler->isolate()->runtime_profiler()->NotifyTick();
707 TickSample* sample = CpuProfiler::TickSampleEvent(sampler->isolate());
712 sample->state = sampler->isolate()->current_vm_state()
    [all...]
platform-solaris.cc 187 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
673 Isolate* isolate = Isolate::UncheckedCurrent();
674 if (isolate == NULL || !isolate->IsInitialized() || !isolate->IsInUse()) {
675 // We require a fully initialized and entered isolate.
679 !isolate->thread_manager()->IsLockedByCurrentThread()) {
683 Sampler* sampler = isolate->logger()->sampler()
    [all...]
string-stream.cc 197 DebugObjectCache* debug_object_cache = Isolate::Current()->
264 LOG(ISOLATE, StringEvent("StackDump", buffer_));
290 Isolate* isolate = Isolate::Current(); local
291 isolate->set_string_stream_current_security_token(NULL);
292 if (isolate->string_stream_debug_object_cache() == NULL) {
293 isolate->set_string_stream_debug_object_cache(
296 isolate->string_stream_debug_object_cache()->Clear();
303 Isolate::Current()->string_stream_debug_object_cache()->length() == 0)
449 Isolate* isolate = Isolate::Current(); local
    [all...]
isolate.h 111 #define RETURN_IF_SCHEDULED_EXCEPTION(isolate) \
113 Isolate* __isolate__ = (isolate); \
119 #define RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, value) \
122 ASSERT((isolate)->has_pending_exception()); \
127 #define CHECK_NOT_EMPTY_HANDLE(isolate, call) \
129 ASSERT(!(isolate)->has_pending_exception()); \
131 CHECK(!(isolate)->has_pending_exception()); \
134 #define RETURN_IF_EMPTY_HANDLE(isolate, call) \
135 RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, Failure::Exception()
381 Isolate* isolate() const { return isolate_; } function in class:v8::internal::Isolate::PerIsolateThreadData
438 Isolate* isolate = reinterpret_cast<Isolate*>( local
1282 Isolate* isolate = Isolate::Current(); local
1286 Isolate* isolate = context_->GetIsolate(); local
    [all...]
platform-freebsd.cc 175 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
302 LOG(i::Isolate::Current(), SharedLibraryEvent(start_of_path, start, end));
681 Isolate* isolate = Isolate::UncheckedCurrent();
682 if (isolate == NULL || !isolate->IsInitialized() || !isolate->IsInUse()) {
683 // We require a fully initialized and entered isolate.
687 !isolate->thread_manager()->IsLockedByCurrentThread())
    [all...]
platform-linux.cc 368 LOG(i::Isolate::Current(),
485 i::Isolate* isolate = ISOLATE; local
519 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
1026 Isolate* isolate = Isolate::UncheckedCurrent();
1027 if (isolate == NULL || !isolate->IsInitialized() || !isolate->IsInUse())
    [all...]
platform-openbsd.cc 77 Isolate* isolate = Isolate::UncheckedCurrent(); local
78 // Note that the current isolate isn't set up in a call path via
81 if (isolate != NULL) {
83 uint64_t rnd1 = V8::RandomPrivate(isolate);
84 uint64_t rnd2 = V8::RandomPrivate(isolate);
91 uint32_t raw_addr = V8::RandomPrivate(isolate);
193 LOG(i::Isolate::Current(),
287 i::Isolate* isolate = ISOLATE local
    [all...]
liveobjectlist.cc 39 #include "isolate.h"
215 Heap* heap = ISOLATE->heap();
576 Isolate* isolate = Isolate::Current(); local
577 Factory* factory = isolate->factory();
578 detail = factory->NewJSObject(isolate->object_function());
670 Isolate* isolate = Isolate::Current() local
1099 Isolate* isolate = Isolate::Current(); local
1271 Isolate* isolate = Isolate::Current(); local
1398 Isolate* isolate = Isolate::Current(); local
1522 Isolate* isolate = Isolate::Current(); local
1668 Isolate* isolate = Isolate::Current(); local
1792 Isolate* isolate = Isolate::Current(); local
1938 Isolate* isolate = Isolate::Current(); local
1998 Isolate* isolate = Isolate::Current(); local
2124 Isolate* isolate = Isolate::Current(); local
    [all...]
  /external/chromium_org/v8/src/
heap-inl.h 32 #include "isolate.h"
595 PrintPID("%8.0f ms: ", isolate()->time_millis_since_init());
598 "isolate=0x%08" V8PRIxPTR ".\n",
602 reinterpret_cast<intptr_t>(isolate()));
609 Isolate* Heap::isolate() { function in class:v8::internal::Heap
610 return reinterpret_cast<Isolate*>(reinterpret_cast<intptr_t>(this) -
611 reinterpret_cast<size_t>(reinterpret_cast<Isolate*>(4)->heap()) + 4);
629 #define CALL_AND_RETRY(ISOLATE, FUNCTION_CALL, RETURN_VALUE, RETURN_EMPTY, OOM)\
639 ISOLATE->heap()->CollectGarbage(Failure::cast(__maybe_object__)->
    [all...]
platform-cygwin.cc 111 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
184 i::Isolate* isolate = ISOLATE; local
218 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
251 Isolate* isolate = Isolate::UncheckedCurrent(); local
252 // Note that the current isolate isn't set up in a call path via
255 if (isolate != NULL)
    [all...]
platform-freebsd.cc 120 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
221 LOG(i::Isolate::Current(), SharedLibraryEvent(start_of_path, start, end));
platform-openbsd.cc 118 LOG(i::Isolate::Current(),
192 i::Isolate* isolate = ISOLATE; local
226 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
platform-solaris.cc 135 LOG(ISOLATE, StringEvent("OS::Allocate", "mmap failed"));
log.cc 545 explicit Profiler(Isolate* isolate);
584 Isolate* isolate_;
611 Ticker(Isolate* isolate, int interval):
612 Sampler(isolate, interval),
642 Profiler::Profiler(Isolate* isolate)
644 isolate_(isolate),
689 LOG(ISOLATE, UncheckedStringEvent("profiler", "end"))
1800 Isolate* isolate = Isolate::Current(); local
    [all...]
platform-linux.cc 363 LOG(i::Isolate::Current(),
450 i::Isolate* isolate = ISOLATE; local
485 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
string-stream.cc 197 DebugObjectCache* debug_object_cache = Isolate::Current()->
272 LOG(ISOLATE, StringEvent("StackDump", buffer_));
293 Factory* factory = Isolate::Current()->factory();
299 Isolate* isolate = Isolate::Current(); local
300 isolate->set_string_stream_current_security_token(NULL);
301 if (isolate->string_stream_debug_object_cache() == NULL) {
302 isolate->set_string_stream_debug_object_cache(
305 isolate->string_stream_debug_object_cache()->Clear()
460 Isolate* isolate = Isolate::Current(); local
544 Isolate* isolate = fun->GetIsolate(); local
    [all...]
isolate.h 120 #define RETURN_IF_SCHEDULED_EXCEPTION(isolate) \
122 Isolate* __isolate__ = (isolate); \
128 #define RETURN_HANDLE_IF_SCHEDULED_EXCEPTION(isolate, T) \
130 Isolate* __isolate__ = (isolate); \
137 #define RETURN_IF_EMPTY_HANDLE_VALUE(isolate, call, value) \
140 ASSERT((isolate)->has_pending_exception()); \
145 #define CHECK_NOT_EMPTY_HANDLE(isolate, call) \
147 ASSERT(!(isolate)->has_pending_exception());
412 Isolate* isolate() const { return isolate_; } function in class:v8::internal::Isolate::PerIsolateThreadData
469 Isolate* isolate = reinterpret_cast<Isolate*>( local
1400 Isolate* isolate = Isolate::Current(); local
1404 Isolate* isolate = context_->GetIsolate(); local
    [all...]
platform-win32.cc 896 Isolate* isolate = Isolate::UncheckedCurrent(); local
897 // Note that the current isolate isn't set up in a call path via
900 if (isolate != NULL) {
913 uintptr_t address = (V8::RandomPrivate(isolate) << kPageSizeBits)
953 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed"));
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tnc.c 21 enum { ALLOW, ISOLATE, NO_ACCESS, NO_RECOMMENDATION } recommendation;
181 case ISOLATE:
380 data->recommendation = ISOLATE;
  /external/chromium_org/v8/test/cctest/
test-alloc.cc 40 Heap* heap = Isolate::Current()->heap();
53 *Isolate::Current()->object_function())->ToObjectChecked();
84 CHECK(!heap->CopyCode(Isolate::Current()->builtins()->builtin(
93 CALL_HEAP_FUNCTION(ISOLATE, AllocateAfterFailures(), Object);
98 v8::HandleScope scope(v8::Isolate::GetCurrent());
99 v8::Handle<v8::Context> env = v8::Context::New(v8::Isolate::GetCurrent());
120 Isolate* isolate = Isolate::Current(); local
121 Factory* factory = isolate->factory()
    [all...]
  /external/v8/test/cctest/
test-alloc.cc 40 Heap* heap = Isolate::Current()->heap();
64 *Isolate::Current()->object_function())->ToObjectChecked();
111 CHECK(!heap->CopyCode(Isolate::Current()->builtins()->builtin(
120 CALL_HEAP_FUNCTION(ISOLATE, AllocateAfterFailures(), Object);
155 function->ReplaceCode(Isolate::Current()->builtins()->builtin(
207 Isolate::Current()->InitializeLoggingAndCounters();
208 CodeRange* code_range = new CodeRange(Isolate::Current());
  /external/chromium_org/v8/src/x64/
regexp-macro-assembler-x64.cc 78 * - Isolate* isolate (address of the current isolate)
124 masm_(zone->isolate(), NULL, kRegExpCodeSize),
337 // Isolate* isolate
345 // Isolate.
346 __ LoadAddress(r9, ExternalReference::isolate_address(isolate()));
356 // Isolate.
357 __ LoadAddress(rcx, ExternalReference::isolate_address(isolate()));
    [all...]
  /external/v8/src/x64/
regexp-macro-assembler-x64.cc 75 * - Isolate* isolate (Address of the current isolate)
117 : masm_(Isolate::Current(), NULL, kRegExpCodeSize),
412 // Isolate* isolate
420 // Isolate.
431 // Isolate.
439 ExternalReference::re_case_insensitive_compare_uc16(masm_.isolate());
761 ExternalReference::address_of_stack_limit(masm_.isolate());
    [all...]

Completed in 589 milliseconds

1 2