/external/v8/src/ |
stub-cache.cc | 43 // StubCache implementation. 46 StubCache::StubCache(Isolate* isolate) : isolate_(isolate) { 51 void StubCache::Initialize() { 58 Code* StubCache::Set(String* name, Map* map, Code* code) { 102 Handle<Code> StubCache::ComputeLoadNonexistent(Handle<String> name, 135 Handle<Code> StubCache::ComputeLoadField(Handle<String> name, 154 Handle<Code> StubCache::ComputeLoadCallback(Handle<String> name, 174 Handle<Code> StubCache::ComputeLoadConstant(Handle<String> name, 194 Handle<Code> StubCache::ComputeLoadInterceptor(Handle<String> name [all...] |
stub-cache.h | 51 class StubCache; 63 friend class StubCache; 67 class StubCache { 273 SCTableReference key_reference(StubCache::Table table) { 279 SCTableReference map_reference(StubCache::Table table) { 285 SCTableReference value_reference(StubCache::Table table) { 291 StubCache::Entry* first_entry(StubCache::Table table) { 293 case StubCache::kPrimary: return StubCache::primary_ [all...] |
serialize.cc | 265 StubCache* stub_cache = isolate->stub_cache(); 268 Add(stub_cache->key_reference(StubCache::kPrimary).address(), 271 "StubCache::primary_->key"); 272 Add(stub_cache->value_reference(StubCache::kPrimary).address(), 275 "StubCache::primary_->value"); 276 Add(stub_cache->map_reference(StubCache::kPrimary).address(), 279 "StubCache::primary_->map"); 280 Add(stub_cache->key_reference(StubCache::kSecondary).address(), 283 "StubCache::secondary_->key"); 284 Add(stub_cache->value_reference(StubCache::kSecondary).address() [all...] |
isolate.h | 78 class StubCache; 808 StubCache* stub_cache() { return stub_cache_; } [all...] |
isolate.cc | [all...] |
/external/chromium_org/v8/src/ |
stub-cache.cc | 44 // StubCache implementation. 47 StubCache::StubCache(Isolate* isolate) 51 void StubCache::Initialize() { 58 Code* StubCache::Set(Name* name, Map* map, Code* code) { 102 Handle<Code> StubCache::FindIC(Handle<Name> name, 115 Handle<Code> StubCache::FindHandler(Handle<Name> name, 128 Handle<Code> StubCache::ComputeMonomorphicIC( 170 Handle<Code> StubCache::ComputeLoadNonexistent(Handle<Name> name, 204 Handle<Code> StubCache::ComputeKeyedLoadElement(Handle<Map> receiver_map) [all...] |
stub-cache.h | 54 class StubCache; 66 friend class StubCache; 70 class StubCache { 221 SCTableReference key_reference(StubCache::Table table) { 227 SCTableReference map_reference(StubCache::Table table) { 233 SCTableReference value_reference(StubCache::Table table) { 239 StubCache::Entry* first_entry(StubCache::Table table) { 241 case StubCache::kPrimary: return StubCache::primary_ [all...] |
serialize.cc | 267 StubCache* stub_cache = isolate->stub_cache(); 270 Add(stub_cache->key_reference(StubCache::kPrimary).address(), 273 "StubCache::primary_->key"); 274 Add(stub_cache->value_reference(StubCache::kPrimary).address(), 277 "StubCache::primary_->value"); 278 Add(stub_cache->map_reference(StubCache::kPrimary).address(), 281 "StubCache::primary_->map"); 282 Add(stub_cache->key_reference(StubCache::kSecondary).address(), 285 "StubCache::secondary_->key"); 286 Add(stub_cache->value_reference(StubCache::kSecondary).address() [all...] |
isolate.h | 84 class StubCache; 869 StubCache* stub_cache() { return stub_cache_; } [all...] |
isolate.cc | [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1383.js | 29 // StubCache::ComputeKeyedLoadOrStoreExternalArray does not
|
/external/v8/test/mjsunit/regress/ |
regress-1383.js | 29 // StubCache::ComputeKeyedLoadOrStoreExternalArray does not
|
/external/chromium_org/v8/src/ia32/ |
stub-cache-ia32.cc | 45 StubCache::Table table, 80 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 82 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 118 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 120 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 187 void StubCache::GenerateProbe(MacroAssembler* masm, 387 STATIC_ASSERT(StubCache::kInterceptorArgsNameIndex == 0); 388 STATIC_ASSERT(StubCache::kInterceptorArgsInfoIndex == 1); 389 STATIC_ASSERT(StubCache::kInterceptorArgsThisIndex == 2); 390 STATIC_ASSERT(StubCache::kInterceptorArgsHolderIndex == 3) [all...] |
/external/chromium_org/v8/src/x64/ |
stub-cache-x64.cc | 46 StubCache::Table table, 57 ASSERT_EQ(3 * kPointerSize, sizeof(StubCache::Entry)); 95 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 97 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 157 void StubCache::GenerateProbe(MacroAssembler* masm, 362 STATIC_ASSERT(StubCache::kInterceptorArgsNameIndex == 0); 363 STATIC_ASSERT(StubCache::kInterceptorArgsInfoIndex == 1); 364 STATIC_ASSERT(StubCache::kInterceptorArgsThisIndex == 2); 365 STATIC_ASSERT(StubCache::kInterceptorArgsHolderIndex == 3); 366 STATIC_ASSERT(StubCache::kInterceptorArgsLength == 4) [all...] |
/external/chromium_org/v8/src/arm/ |
stub-cache-arm.cc | 45 StubCache::Table table, 109 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 111 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 179 void StubCache::GenerateProbe(MacroAssembler* masm, 750 STATIC_ASSERT(StubCache::kInterceptorArgsNameIndex == 0); 751 STATIC_ASSERT(StubCache::kInterceptorArgsInfoIndex == 1); 752 STATIC_ASSERT(StubCache::kInterceptorArgsThisIndex == 2); 753 STATIC_ASSERT(StubCache::kInterceptorArgsHolderIndex == 3); 754 STATIC_ASSERT(StubCache::kInterceptorArgsLength == 4); 776 StubCache::kInterceptorArgsLength) [all...] |
/external/chromium_org/v8/src/mips/ |
stub-cache-mips.cc | 45 StubCache::Table table, 104 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 106 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 173 void StubCache::GenerateProbe(MacroAssembler* masm, 740 STATIC_ASSERT(StubCache::kInterceptorArgsNameIndex == 0); 741 STATIC_ASSERT(StubCache::kInterceptorArgsInfoIndex == 1); 742 STATIC_ASSERT(StubCache::kInterceptorArgsThisIndex == 2); 743 STATIC_ASSERT(StubCache::kInterceptorArgsHolderIndex == 3); 744 STATIC_ASSERT(StubCache::kInterceptorArgsLength == 4); 764 StubCache::kInterceptorArgsLength) [all...] |
/external/v8/src/ia32/ |
stub-cache-ia32.cc | 45 StubCache::Table table, 80 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 82 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 118 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 120 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 191 void StubCache::GenerateProbe(MacroAssembler* masm, [all...] |
/external/v8/src/x64/ |
stub-cache-x64.cc | 45 StubCache::Table table, 56 ASSERT_EQ(24, sizeof(StubCache::Entry)); 94 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 96 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 160 void StubCache::GenerateProbe(MacroAssembler* masm, [all...] |
/external/v8/src/arm/ |
stub-cache-arm.cc | 45 StubCache::Table table, 114 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 116 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 188 void StubCache::GenerateProbe(MacroAssembler* masm, [all...] |
/external/v8/src/mips/ |
stub-cache-mips.cc | 45 StubCache::Table table, 104 if (FLAG_test_secondary_stub_cache && table == StubCache::kPrimary) { 106 } else if (FLAG_test_primary_stub_cache && table == StubCache::kSecondary) { 177 void StubCache::GenerateProbe(MacroAssembler* masm, [all...] |