Searched refs:StubCache (Results 1 - 9 of 9) sorted by relevance

/external/v8/src/
H A Dstub-cache.cc41 // StubCache implementation.
44 StubCache::StubCache(Isolate* isolate) : isolate_(isolate) { function in class:v8::internal::StubCache
46 memset(primary_, 0, sizeof(primary_[0]) * StubCache::kPrimaryTableSize);
47 memset(secondary_, 0, sizeof(secondary_[0]) * StubCache::kSecondaryTableSize);
51 void StubCache::Initialize(bool create_heap_objects) {
61 Code* StubCache::Set(String* name, Map* map, Code* code) {
102 MaybeObject* StubCache::ComputeLoadNonexistent(String* name,
142 MaybeObject* StubCache::ComputeLoadField(String* name,
168 MaybeObject* StubCache
[all...]
H A Dstub-cache.h47 class StubCache;
58 friend class StubCache;
62 class StubCache { class in namespace:v8::internal
304 SCTableReference key_reference(StubCache::Table table) {
310 SCTableReference value_reference(StubCache::Table table) {
316 StubCache::Entry* first_entry(StubCache::Table table) {
318 case StubCache::kPrimary: return StubCache::primary_;
319 case StubCache
[all...]
H A Disolate.h78 class StubCache;
823 StubCache* stub_cache() { return stub_cache_; }
1153 StubCache* stub_cache_;
H A Dserialize.cc307 StubCache* stub_cache = isolate->stub_cache();
310 Add(stub_cache->key_reference(StubCache::kPrimary).address(),
313 "StubCache::primary_->key");
314 Add(stub_cache->value_reference(StubCache::kPrimary).address(),
317 "StubCache::primary_->value");
318 Add(stub_cache->key_reference(StubCache::kSecondary).address(),
321 "StubCache::secondary_->key");
322 Add(stub_cache->value_reference(StubCache::kSecondary).address(),
325 "StubCache::secondary_->value");
H A Disolate.cc742 stub_cache_ = new StubCache(this);
/external/v8/src/mips/
H A Dstub-cache-mips.cc42 void StubCache::GenerateProbe(MacroAssembler* masm,
/external/v8/src/x64/
H A Dstub-cache-x64.cc45 StubCache::Table table,
49 ASSERT_EQ(16, sizeof(StubCache::Entry));
181 void StubCache::GenerateProbe(MacroAssembler* masm,
/external/v8/src/arm/
H A Dstub-cache-arm.cc45 StubCache::Table table,
207 void StubCache::GenerateProbe(MacroAssembler* masm,
/external/v8/src/ia32/
H A Dstub-cache-ia32.cc45 StubCache::Table table,
206 void StubCache::GenerateProbe(MacroAssembler* masm,

Completed in 154 milliseconds