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

  /external/v8/src/
ic.cc 235 StubCache::FindCallInitialize(target->arguments_count(), in_loop);
507 code = StubCache::ComputeCallPreMonomorphic(argc, in_loop);
509 code = StubCache::ComputeCallMegamorphic(argc, in_loop);
515 code = StubCache::ComputeCallField(argc, in_loop, *name, *object,
524 code = StubCache::ComputeCallConstant(argc, in_loop, *name, *object,
538 code = StubCache::ComputeCallGlobal(argc,
551 code = StubCache::ComputeCallNormal(argc, in_loop, *name, *receiver);
557 code = StubCache::ComputeCallInterceptor(argc, *name, *object,
609 StubCache::Set(*name, HeapObject::cast(*object)->map(), target);
620 StubCache::Set(*name, HeapObject::cast(*object)->map(), target)
    [all...]
stub-cache.cc 39 // StubCache implementation.
42 StubCache::Entry StubCache::primary_[StubCache::kPrimaryTableSize];
43 StubCache::Entry StubCache::secondary_[StubCache::kSecondaryTableSize];
45 void StubCache::Initialize(bool create_heap_objects) {
55 Code* StubCache::Set(String* name, Map* map, Code* code) {
96 Object* StubCache::ComputeLoadField(String* name
    [all...]
v8.cc 98 StubCache::Initialize(create_heap_objects);
103 StubCache::Clear();
stub-cache.h 47 class StubCache : public AllStatic {
273 static SCTableReference keyReference(StubCache::Table table) {
279 static SCTableReference valueReference(StubCache::Table table) {
289 static StubCache::Entry* first_entry(StubCache::Table table) {
291 case StubCache::kPrimary: return StubCache::primary_;
292 case StubCache::kSecondary: return StubCache::secondary_;
serialize.cc 310 Add(SCTableReference::keyReference(StubCache::kPrimary).address(),
313 "StubCache::primary_->key");
314 Add(SCTableReference::valueReference(StubCache::kPrimary).address(),
317 "StubCache::primary_->value");
318 Add(SCTableReference::keyReference(StubCache::kSecondary).address(),
321 "StubCache::secondary_->key");
322 Add(SCTableReference::valueReference(StubCache::kSecondary).address(),
325 "StubCache::secondary_->value");
    [all...]
codegen.cc 293 CALL_HEAP_FUNCTION(StubCache::ComputeCallInitialize(argc, in_loop), Code);
handles.cc 751 CALL_HEAP_FUNCTION(StubCache::ComputeLazyCompile(argc), Code);
debug.cc 66 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugBreak(argc), Code);
71 CALL_HEAP_FUNCTION(StubCache::ComputeCallDebugPrepareStepIn(argc), Code);
    [all...]
mark-compact.cc 159 StubCache::Clear();
    [all...]
  /external/v8/src/arm/
ic-arm.cc 214 StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
253 StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
410 StubCache::GenerateProbe(masm, flags, r0, r2, r3, no_reg);
812 StubCache::GenerateProbe(masm, flags, r1, r2, r3, no_reg);
stub-cache-arm.cc 42 StubCache::Table table,
84 void StubCache::GenerateProbe(MacroAssembler* masm,
    [all...]
  /external/v8/src/mips/
stub-cache-mips.cc 40 void StubCache::GenerateProbe(MacroAssembler* masm,
  /external/v8/src/x64/
ic-x64.cc     [all...]
stub-cache-x64.cc 47 StubCache::Table table,
51 ASSERT_EQ(16, sizeof(StubCache::Entry));
153 void StubCache::GenerateProbe(MacroAssembler* masm,
    [all...]
  /external/v8/src/ia32/
ic-ia32.cc     [all...]
stub-cache-ia32.cc 42 StubCache::Table table,
102 void StubCache::GenerateProbe(MacroAssembler* masm,
    [all...]
  /external/v8/test/cctest/
test-debug.cc 398 CALL_HEAP_FUNCTION(v8::internal::StubCache::ComputeCallDebugBreak(argc),
    [all...]

Completed in 1570 milliseconds