HomeSort by relevance Sort by last modified time
    Searched defs:isolate (Results 151 - 175 of 285) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/v8/src/ia32/
lithium-codegen-ia32.h 82 Isolate* isolate() const { return info_->isolate(); } function in class:v8::internal::BASE_EMBEDDED
83 Factory* factory() const { return isolate()->factory(); }
84 Heap* heap() const { return isolate()->heap(); }
  /external/chromium_org/v8/src/
ic.h 94 IC(FrameDepth depth, Isolate* isolate);
133 static inline JSObject* GetCodeCacheHolder(Isolate* isolate,
140 Isolate* isolate() const { return isolate_; } function in class:v8::internal::IC
226 Isolate* isolate_;
260 CallICBase(Code::Kind kind, Isolate* isolate)
261 : IC(EXTRA_CALL_FRAME, isolate), kind_(kind) {
    [all...]
platform-linux.cc 363 LOG(i::Isolate::Current(),
450 i::Isolate* isolate = ISOLATE; local
485 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
platform-openbsd.cc 118 LOG(i::Isolate::Current(),
192 i::Isolate* isolate = ISOLATE; local
226 LOG(isolate, SharedLibraryEvent(lib_name, start, end));
property.h 181 explicit LookupResult(Isolate* isolate)
182 : isolate_(isolate),
183 next_(isolate->top_lookup_result()),
188 isolate->SetTopLookupResult(this);
192 ASSERT(isolate()->top_lookup_result() == this);
193 isolate()->SetTopLookupResult(next_);
196 Isolate* isolate() const { return isolate_; } function in class:v8::internal::BASE_EMBEDDED
369 return isolate()->heap()->the_hole_value()
    [all...]
sampler.cc 241 inline bool Init(Sampler* sampler, Isolate* isolate) {
243 Isolate::PerIsolateThreadData* per_thread_data = isolate->
314 Isolate* isolate = Isolate::UncheckedCurrent();
315 if (isolate == NULL || !isolate->IsInitialized() || !isolate->IsInUse())
507 Isolate* isolate = sampler->isolate(); local
    [all...]
scopes.cc 108 : isolate_(zone->isolate()),
132 : isolate_(Isolate::Current()),
155 : isolate_(Isolate::Current()),
295 AstNodeFactory<AstNullVisitor> ast_node_factory(info->isolate(),
301 if (info->isolate()->bootstrapper()->IsActive()
1089 Isolate* isolate = Isolate::Current(); local
1120 Isolate* isolate = Isolate::Current(); local
    [all...]
stub-cache.h 388 Isolate* isolate() { return isolate_; } function in class:v8::internal::StubCache
389 Heap* heap() { return isolate()->heap(); }
390 Factory* factory() { return isolate()->factory(); }
393 explicit StubCache(Isolate* isolate);
465 Isolate* isolate_;
467 friend class Isolate;
497 explicit StubCompiler(Isolate* isolate)
608 Isolate* isolate() { return isolate_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/chromium_org/v8/src/mips/
builtins-mips.cc 75 __ JumpToExternalReference(ExternalReference(id, masm->isolate()));
136 InternalArrayConstructorStub stub(masm->isolate());
166 masm->isolate()->heap()->undefined_value(),
167 masm->isolate());
169 ArrayConstructorStub stub(masm->isolate());
182 Counters* counters = masm->isolate()->counters();
381 Isolate* isolate = masm->isolate(); local
408 ExternalReference::debug_step_in_fp_address(isolate);
    [all...]
ic-mips.cc 362 Isolate::Current()->stub_cache()->GenerateProbe(
398 Isolate::Current()->stub_cache()->GenerateProbe(
456 Isolate* isolate = masm->isolate(); local
459 __ IncrementCounter(isolate->counters()->call_miss(), 1, a3, t0);
461 __ IncrementCounter(isolate->counters()->keyed_call_miss(), 1, a3, t0);
475 __ PrepareCEntryFunction(ExternalReference(IC_Utility(id), isolate));
552 Counters* counters = masm->isolate()->counters();
661 Isolate::Current()->stub_cache()->GenerateProbe
695 Isolate* isolate = masm->isolate(); local
901 Isolate* isolate = masm->isolate(); local
941 Isolate* isolate = masm->isolate(); local
    [all...]
lithium-codegen-mips.h 77 Isolate* isolate() const { return info_->isolate(); } function in class:v8::internal::BASE_EMBEDDED
78 Factory* factory() const { return isolate()->factory(); }
79 Heap* heap() const { return isolate()->heap(); }
regexp-macro-assembler-mips.cc 65 * - fp[64] Isolate* isolate (address of the current isolate)
125 masm_(new MacroAssembler(zone->isolate(), NULL, kRegExpCodeSize)),
331 // a3: Isolate* isolate.
341 // Isolate.
342 __ li(a3, Operand(ExternalReference::isolate_address(masm_->isolate())));
347 ExternalReference::re_case_insensitive_compare_uc16(masm_->isolate());
634 ExternalReference::address_of_stack_limit(masm_->isolate());
1088 Isolate* isolate = frame_entry<Isolate*>(re_frame, kIsolate); local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-mips.cc 52 Isolate* isolate = Isolate::Current(); local
53 HandleScope scope(isolate);
55 MacroAssembler assm(isolate, NULL, 0);
78 Isolate* isolate = Isolate::Current(); local
79 HandleScope scope(isolate);
81 MacroAssembler assm(isolate, NULL, 0)
117 Isolate* isolate = Isolate::Current(); local
259 Isolate* isolate = Isolate::Current(); local
349 Isolate* isolate = Isolate::Current(); local
406 Isolate* isolate = Isolate::Current(); local
474 Isolate* isolate = Isolate::Current(); local
547 Isolate* isolate = Isolate::Current(); local
625 Isolate* isolate = Isolate::Current(); local
730 Isolate* isolate = Isolate::Current(); local
760 Isolate* isolate = Isolate::Current(); local
833 Isolate* isolate = Isolate::Current(); local
977 Isolate* isolate = Isolate::Current(); local
1069 Isolate* isolate = Isolate::Current(); local
1128 Isolate* isolate = Isolate::Current(); local
1261 Isolate* isolate = Isolate::Current(); local
    [all...]
  /external/v8/src/
accessors.cc 36 #include "isolate.h"
95 ASSERT(Isolate::Current()->context()->global_context()->number_function()->
97 Map* number_map = Isolate::Current()->context()->global_context()->
105 Isolate* isolate = object->GetIsolate(); local
112 isolate->heap()->length_symbol(), value, NONE);
118 HandleScope scope(isolate);
121 Handle<JSObject> object_handle(object, isolate);
122 Handle<Object> value_handle(value, isolate);
133 return isolate->Throw
319 Isolate* isolate = wrapper->GetIsolate(); local
590 Isolate* isolate = Isolate::Current(); local
727 Isolate* isolate = Isolate::Current(); local
    [all...]
execution.cc 36 #include "isolate-inl.h"
75 Isolate* isolate = function->GetIsolate(); local
78 VMState state(isolate, JS);
90 ? isolate->factory()->js_construct_entry_code()
91 : isolate->factory()->js_entry_code();
108 SaveContext save(isolate);
127 ASSERT(*has_pending_exception == Isolate::Current()->has_pending_exception());
129 isolate->ReportPendingMessages();
130 if (isolate->pending_exception() == Failure::OutOfMemoryException())
205 Isolate* isolate = Isolate::Current(); local
225 Isolate* isolate = Isolate::Current(); local
253 Isolate* isolate = Isolate::Current(); local
283 Isolate* isolate = Isolate::Current(); local
311 Isolate* isolate = Isolate::Current(); local
667 Isolate* isolate = string->GetIsolate(); local
700 Isolate* isolate = data->GetIsolate(); local
721 Isolate* isolate = data->GetIsolate(); local
755 Isolate* isolate = Isolate::Current(); local
769 Isolate* isolate = fun->GetIsolate(); local
786 Isolate* isolate = Isolate::Current(); local
817 Isolate* isolate = Isolate::Current(); local
866 Isolate* isolate = Isolate::Current(); local
    [all...]
handles.cc 49 Isolate* isolate = Isolate::Current(); local
50 HandleScopeImplementer* impl = isolate->handle_scope_implementer();
54 (isolate->handle_scope_data()->next - impl->blocks()->last()));
59 Isolate* isolate = Isolate::Current(); local
61 isolate->handle_scope_data();
73 HandleScopeImplementer* impl = isolate->handle_scope_implementer()
237 Isolate* isolate = Isolate::Current(); local
250 Isolate* isolate = object->GetIsolate(); local
261 Isolate* isolate = object->GetIsolate(); local
284 Isolate* isolate = obj->GetIsolate(); local
292 Isolate* isolate = Isolate::Current(); local
302 Isolate* isolate = receiver->GetIsolate(); local
319 Isolate* isolate = Isolate::Current(); local
336 Isolate* isolate = obj->GetIsolate(); local
360 Isolate* isolate = Isolate::Current(); local
372 Isolate* isolate = Isolate::Current(); local
451 Isolate* isolate = src->GetIsolate(); local
549 Isolate* isolate = receiver->GetIsolate(); local
571 Isolate* isolate = receiver->GetIsolate(); local
604 Isolate* isolate = object->GetIsolate(); local
694 Isolate* isolate = object->GetIsolate(); local
705 Isolate* isolate = object->GetIsolate(); local
    [all...]
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...]
ic.h 93 IC(FrameDepth depth, Isolate* isolate);
140 Isolate* isolate() const { return isolate_; } function in class:v8::internal::IC
180 Isolate* isolate_;
214 CallICBase(Code::Kind kind, Isolate* isolate)
215 : IC(EXTRA_CALL_FRAME, isolate), kind_(kind) {}
267 explicit CallIC(Isolate* isolate) : CallICBase(Code::CALL_IC, isolate)
    [all...]
platform.h 705 Sampler(Isolate* isolate, int interval);
732 Isolate* isolate() { return isolate_; } function in class:v8::internal::Sampler
750 Isolate* isolate_;
scopes.cc 103 : isolate_(Isolate::Current()),
126 : isolate_(Isolate::Current()),
147 : isolate_(Isolate::Current()),
264 AstNodeFactory<AstNullVisitor> ast_node_factory(info->isolate());
269 if (info->isolate()->bootstrapper()->IsActive()
288 Isolate* isolate = info->isolate(); local
289 Factory* factory = isolate->factory();
293 isolate->Throw(*result, &location)
1026 Isolate* isolate = Isolate::Current(); local
    [all...]
  /external/v8/src/arm/
builtins-arm.cc 71 __ JumpToExternalReference(ExternalReference(id, masm->isolate()));
314 Counters* counters = masm->isolate()->counters();
500 masm->isolate()->builtins()->InternalArrayCodeGeneric();
533 masm->isolate()->builtins()->ArrayCodeGeneric();
565 masm->isolate()->builtins()->JSConstructStubGeneric();
578 Counters* counters = masm->isolate()->counters();
712 Isolate* isolate = masm->isolate(); local
730 ExternalReference::debug_step_in_fp_address(isolate);
    [all...]
deoptimizer-arm.cc 87 Isolate* isolate = code->GetIsolate(); local
91 DeoptimizerData* data = isolate->deoptimizer_data();
98 isolate->heap()->mark_compact_collector()->InvalidateCode(code);
777 Isolate* isolate = masm()->isolate(); local
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 49 Isolate* isolate = code->GetIsolate(); local
50 HandleScope scope(isolate);
90 Factory* factory = isolate->factory();
120 Isolate* isolate = function->GetIsolate();
121 HandleScope scope(isolate);
183 isolate->heap()->CreateFillerObjectAt(junk_address,
188 DeoptimizerData* data = isolate->deoptimizer_data();
195 isolate->heap()->mark_compact_collector()->InvalidateCode(code)
849 Isolate* isolate = masm()->isolate(); local
    [all...]
  /external/v8/src/mips/
builtins-mips.cc 75 __ JumpToExternalReference(ExternalReference(id, masm->isolate()));
324 Counters* counters = masm->isolate()->counters();
511 masm->isolate()->builtins()->InternalArrayCodeGeneric();
546 masm->isolate()->builtins()->ArrayCodeGeneric();
581 masm->isolate()->builtins()->JSConstructStubGeneric();
594 Counters* counters = masm->isolate()->counters();
728 Isolate* isolate = masm->isolate(); local
755 ExternalReference::debug_step_in_fp_address(isolate);
    [all...]
deoptimizer-mips.cc 86 Isolate* isolate = code->GetIsolate(); local
90 DeoptimizerData* data = isolate->deoptimizer_data();
97 isolate->heap()->mark_compact_collector()->InvalidateCode(code);
764 Isolate* isolate = masm()->isolate(); local
828 __ sw(t1, CFunctionArgumentOperand(6)); // Isolate.
832 __ CallCFunction(ExternalReference::new_deoptimizer_function(isolate), 6);
    [all...]

Completed in 639 milliseconds

1 2 3 4 5 67 8 91011>>