HomeSort by relevance Sort by last modified time
    Searched refs:Isolate (Results 51 - 75 of 231) sorted by null

1 23 4 5 6 7 8 910

  /external/v8/test/cctest/
test-date.cc 111 Isolate* isolate = Isolate::Current(); local
112 DateCache* date_cache = isolate->date_cache();
123 Isolate* isolate = Isolate::Current(); local
136 isolate->set_date_cache(date_cache);
test-log-stack-tracer.cc 37 #include "isolate.h"
52 using v8::internal::Isolate;
76 StackTracer::Trace(Isolate::Current(), trace_env.sample);
84 *(Isolate::Current()->c_entry_fp_address());
86 *(Isolate::Current()->c_entry_fp_address()) = 0;
88 *(Isolate::Current()->c_entry_fp_address()) = saved_c_frame_fp;
162 CHECK_NE(NULL, i::Isolate::Current()->thread_local_top());
163 return Isolate::js_entry_sp(i::Isolate::Current()->thread_local_top());
275 // StackTracer uses Isolate::c_entry_fp as a starting point for stac
    [all...]
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());
test-assembler-ia32.cc 64 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
92 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
130 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
176 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
211 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
242 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
269 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
315 Assembler assm(Isolate::Current(), buffer, sizeof buffer);
348 MacroAssembler assm(Isolate::Current(), buffer, sizeof buffer);
402 Assembler assm(Isolate::Current(), NULL, 0)
    [all...]
test-log.cc 169 explicit LoopingThread(v8::internal::Isolate* isolate)
170 : v8::internal::Thread(isolate),
209 explicit LoopingJsThread(v8::internal::Isolate* isolate)
210 : LoopingThread(isolate) { }
213 CHECK(i::Isolate::Current() != NULL);
214 CHECK_GT(i::Isolate::Current()->thread_manager()->CurrentId(), 0);
235 explicit LoopingNonJsThread(v8::internal::Isolate* isolate)
    [all...]
test-mark-compact.cc 131 Object* obj = i::Isolate::Current()->heap()->AllocateFixedArray(length)->
190 HEAP->AllocateFunction(*Isolate::Current()->function_map(),
197 Isolate::Current()->context()->global()->SetProperty(
206 CHECK(Isolate::Current()->context()->global()->HasLocalProperty(func_name));
207 Object* func_value = Isolate::Current()->context()->global()->
215 Isolate::Current()->context()->global()->SetProperty(
228 CHECK(Isolate::Current()->context()->global()->HasLocalProperty(obj_name));
229 CHECK(Isolate::Current()->context()->global()->
231 obj = JSObject::cast(Isolate::Current()->context()->global()->
313 GlobalHandles* global_handles = Isolate::Current()->global_handles()
    [all...]
test-parsing.cc 37 #include "isolate.h"
142 i::Isolate::Current()->stack_guard()->SetStackLimit(
180 i::Isolate::Current()->stack_guard()->SetStackLimit(
243 i::Isolate::Current()->stack_guard()->SetStackLimit(
255 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit();
262 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
282 i::Isolate::Current()->stack_guard()->SetStackLimit(
291 uintptr_t stack_limit = i::Isolate::Current()->stack_guard()->real_climit();
298 i::Scanner scanner(i::Isolate::Current()->unicode_cache());
319 i::Isolate::Current()->stack_guard()->SetStackLimit
    [all...]
test-assembler-x64.cc 43 using v8::internal::Isolate;
109 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
131 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
163 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
185 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
213 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
247 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
276 Assembler assm(Isolate::Current(), buffer, static_cast<int>(actual_size));
365 Assembler assm(Isolate::Current(), NULL, 0);
379 Assembler assm(Isolate::Current(), buffer, sizeof(buffer))
    [all...]
test-regexp.cc 75 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
76 FlatStringReader reader(Isolate::Current(), CStrVector(input));
85 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
86 FlatStringReader reader(Isolate::Current(), CStrVector(input));
99 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
100 FlatStringReader reader(Isolate::Current(), CStrVector(input));
117 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
118 FlatStringReader reader(Isolate::Current(), CStrVector(input));
388 ZoneScope zone_scope(Isolate::Current(), DELETE_ON_EXIT);
389 FlatStringReader reader(Isolate::Current(), CStrVector(input))
499 Isolate* isolate = Isolate::Current(); local
1231 Isolate* isolate = Isolate::Current(); local
1269 Isolate* isolate = Isolate::Current(); local
1354 Isolate* isolate = Isolate::Current(); local
    [all...]
  /external/v8/src/
zone-inl.h 34 #include "isolate.h"
126 ZoneScope::ZoneScope(Isolate* isolate, ZoneScopeMode mode)
127 : isolate_(isolate), mode_(mode) {
138 return Isolate::Current()->zone()->scope_nesting_;
handles.h 48 INLINE(Handle(T* obj, Isolate* isolate));
113 explicit inline HandleScope(Isolate* isolate);
122 static inline T** CreateHandle(T* value, Isolate* isolate);
125 static void DeleteExtensions(Isolate* isolate);
138 Isolate* isolate() { return isolate_; function in class:v8::internal::HandleScope
    [all...]
serialize.h 68 static ExternalReferenceTable* instance(Isolate* isolate);
83 explicit ExternalReferenceTable(Isolate* isolate) : refs_(64) {
84 PopulateTable(isolate);
93 void PopulateTable(Isolate* isolate);
99 Isolate* isolate);
129 Isolate* isolate_
    [all...]
contexts.cc 68 ASSERT(Isolate::Current()->bootstrapper()->IsActive());
92 Isolate* isolate = GetIsolate(); local
93 Handle<Context> context(this, isolate);
117 Handle<JSObject> object(JSObject::cast(context->extension()), isolate);
143 context->closure()->shared()->scope_info(), isolate);
146 ScopeInfo::cast(context->extension()), isolate);
232 context = Handle<Context>(context->previous(), isolate);
310 return Isolate::Current()->bootstrapper()->IsActive() || object->IsContext();
317 Isolate* isolate = Isolate::Current() local
    [all...]
execution.h 49 class Isolate;
149 Isolate* isolate);
274 bool Initialize(Isolate* isolate);
297 Isolate* isolate_;
300 friend class Isolate;
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...]
debug.h 459 explicit Debug(Isolate* isolate);
556 Isolate* isolate_;
558 friend class Isolate;
831 explicit Debugger(Isolate* isolate);
868 Isolate* isolate_;
871 friend class Isolate;
896 Isolate* isolate_;
910 explicit DisableBreak(bool disable_break) : isolate_(Isolate::Current())
    [all...]
serialize.cc 65 ExternalReferenceTable* ExternalReferenceTable::instance(Isolate* isolate) {
67 isolate->external_reference_table();
69 external_reference_table = new ExternalReferenceTable(isolate);
70 isolate->set_external_reference_table(external_reference_table);
79 Isolate* isolate) {
83 ExternalReference ref(static_cast<Builtins::CFunctionId>(id), isolate); local
88 ExternalReference ref(static_cast<Builtins::Name>(id), isolate); local
93 ExternalReference ref(static_cast<Runtime::FunctionId>(id), isolate); local
785 Isolate* const isolate = isolate_; local
1137 Isolate* isolate = Isolate::Current(); local
1152 Isolate* isolate = Isolate::Current(); local
1172 Isolate* isolate = Isolate::Current(); local
1204 Isolate* isolate = Isolate::Current(); local
1221 Isolate* isolate = Isolate::Current(); local
    [all...]
ast.h 35 #include "isolate.h"
231 static int GetNextId(Isolate* isolate) {
232 return ReserveIdRange(isolate, 1);
235 static int ReserveIdRange(Isolate* isolate, int n) {
236 int tmp = isolate->ast_node_id();
237 isolate->set_ast_node_id(tmp + n);
361 explicit Expression(Isolate* isolate)
2583 Isolate* isolate() { return isolate_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
allocation.h 121 // interface to include a pointer to an isolate to do this
134 friend class Isolate;
frames-inl.h 32 #include "isolate.h"
114 : iterator_(iterator), isolate_(iterator_->isolate()) {
124 return GetContainingCode(isolate(), pc());
128 inline Code* StackFrame::GetContainingCode(Isolate* isolate, Address pc) {
129 return isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code;
260 Isolate* isolate)
261 : iterator_(isolate) {
268 Isolate* isolate, ThreadLocalTop* top
    [all...]
messages.h 101 static void ReportMessage(Isolate* isolate,
runtime.h 573 friend class Isolate;
631 static Handle<String> StringReplaceOneCharWithString(Isolate* isolate,
639 static int StringMatch(Isolate* isolate,
651 MUST_USE_RESULT static MaybeObject* GetElementOrCharAt(Isolate* isolate,
656 Isolate* isolate,
664 Isolate* isolate
    [all...]
liveedit.cc 598 static void CompileScriptForTracker(Isolate* isolate, Handle<Script> script) {
600 PostponeInterruptsScope postpone(isolate);
608 LiveEditFunctionTracker tracker(info.isolate(), info.function());
613 info.isolate()->StackOverflow();
629 Isolate::Current()->opaque_reference_function();
894 Isolate* isolate = Isolate::Current(); local
895 ZoneScope zone_scope(isolate, DELETE_ON_EXIT)
1476 Isolate* isolate = Isolate::Current(); local
1544 Isolate* isolate = Isolate::Current(); local
    [all...]
deoptimizer.h 130 Isolate* isolate);
131 static Deoptimizer* Grab(Isolate* isolate);
138 Isolate* isolate);
140 Isolate* isolate);
224 static int GetDeoptimizedCodeCount(Isolate* isolate);
    [all...]
  /external/v8/src/ia32/
debug-ia32.cc 52 Isolate* isolate = Isolate::Current(); local
53 rinfo()->PatchCodeWithCall(isolate->debug()->debug_break_return()->entry(),
82 Isolate* isolate = Isolate::Current(); local
84 isolate->debug()->debug_break_slot()->entry(),
132 __ mov(ebx, Immediate(ExternalReference::debug_break(masm->isolate())));
167 ExternalReference(Debug_Address::AfterBreakTarget(), masm->isolate());
    [all...]

Completed in 382 milliseconds

1 23 4 5 6 7 8 910