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

  /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 373 LOG(i::Isolate::Current(),
490 i::Isolate* isolate = ISOLATE; local
524 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
1031 Isolate* isolate = Isolate::UncheckedCurrent();
1032 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...]
platform-win32.cc 879 Isolate* isolate = Isolate::UncheckedCurrent(); local
880 // Note that the current isolate isn't set up in a call path via
883 if (isolate != NULL) {
896 uintptr_t address = (V8::RandomPrivate(isolate) << kPageSizeBits)
936 LOG(ISOLATE, StringEvent("OS::Allocate", "VirtualAlloc failed"));
    [all...]
spaces.cc 126 CodeRange::CodeRange(Isolate* isolate)
127 : isolate_(isolate),
264 MemoryAllocator::MemoryAllocator(Isolate* isolate)
265 : isolate_(isolate),
786 area_size_ = heap->isolate()->memory_allocator()->
815 heap()->isolate()->memory_allocator()->Free(iterator.next());
858 Page* p = heap()->isolate()->memory_allocator()->
907 heap()->isolate()->memory_allocator()->Free(page)
1581 Isolate* isolate = Isolate::Current(); local
1596 Isolate* isolate = Isolate::Current(); local
1604 Isolate* isolate = Isolate::Current(); local
1644 Isolate* isolate = Isolate::Current(); local
1661 Isolate* isolate = Isolate::Current(); local
1761 Isolate* isolate = ISOLATE; local
2328 Isolate* isolate = Isolate::Current(); local
2346 Isolate* isolate = Isolate::Current(); local
2426 Isolate* isolate = heap()->isolate(); local
2796 Isolate* isolate = heap()->isolate(); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_tnc.c 26 enum { ALLOW, ISOLATE, NO_ACCESS, NO_RECOMMENDATION } recommendation;
151 case ISOLATE:
341 data->recommendation = ISOLATE;
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tnc.c 22 enum { ALLOW, ISOLATE, NO_ACCESS, NO_RECOMMENDATION } recommendation;
182 case ISOLATE:
381 data->recommendation = ISOLATE;
  /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/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...]
  /external/v8/src/arm/
code-stubs-arm.cc 3265 Isolate* isolate = masm->isolate(); local
3388 Isolate* isolate = masm->isolate(); local
3692 Isolate* isolate = masm->isolate(); local
3863 Isolate* isolate = masm->isolate(); local
3927 Isolate* isolate = masm->isolate(); local
    [all...]
  /external/v8/src/mips/
code-stubs-mips.cc 3531 Isolate* isolate = masm->isolate(); local
3847 Isolate* isolate = masm->isolate(); local
4033 Isolate* isolate = masm->isolate(); local
4058 Isolate* isolate = masm->isolate(); local
    [all...]
  /external/v8/src/ia32/
code-stubs-ia32.cc 34 #include "isolate.h"
53 Factory* factory = masm->isolate()->factory();
88 Factory* factory = masm->isolate()->factory();
132 Factory* factory = masm->isolate()->factory();
183 Factory* factory = masm->isolate()->factory();
313 Factory* factory = masm->isolate()->factory();
389 Factory* factory = masm->isolate()->factory();
423 Factory* factory = masm->isolate()->factory();
539 ExternalReference::store_buffer_overflow_function(masm->isolate()),
586 ExternalReference(IC_Utility(IC::kToBoolean_Patch), masm->isolate()),
4588 Isolate* isolate = masm->isolate(); local
4623 Isolate* isolate = masm->isolate(); local
4961 Isolate* isolate = masm->isolate(); local
    [all...]

Completed in 1244 milliseconds