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

  /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/v8/test/mjsunit/regress/
regress-1383.js 29 // StubCache::ComputeKeyedLoadOrStoreExternalArray does not
  /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...]

Completed in 256 milliseconds