diff options
| author | Ben Murdoch <benm@google.com> | 2012-01-20 14:57:15 +0000 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2012-01-20 14:57:15 +0000 |
| commit | 2b4ba1175df6a5a6b9b5cda034189197bf6565ec (patch) | |
| tree | 6a4c479deebb22e68c5d7b915609593adee56a92 /src/stub-cache.cc | |
| parent | 35e02d4f35686cd3d202dab09aa0fdf24651afed (diff) | |
| download | android_external_v8-2b4ba1175df6a5a6b9b5cda034189197bf6565ec.tar.gz android_external_v8-2b4ba1175df6a5a6b9b5cda034189197bf6565ec.tar.bz2 android_external_v8-2b4ba1175df6a5a6b9b5cda034189197bf6565ec.zip | |
Merge V8 at r10446: Roll to 3.6.6.19
Bug: 5688872
Change-Id: Ie6be41e043db4e38abeb6b8d92761d7cc2c294bf
Diffstat (limited to 'src/stub-cache.cc')
| -rw-r--r-- | src/stub-cache.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/stub-cache.cc b/src/stub-cache.cc index 55963303..cdb4874f 100644 --- a/src/stub-cache.cc +++ b/src/stub-cache.cc @@ -860,7 +860,7 @@ MaybeObject* StubCache::ComputeCallGlobal(int argc, static Object* GetProbeValue(Isolate* isolate, Code::Flags flags) { // Use raw_unchecked... so we don't get assert failures during GC. - NumberDictionary* dictionary = + UnseededNumberDictionary* dictionary = isolate->heap()->raw_unchecked_non_monomorphic_cache(); int entry = dictionary->FindEntry(isolate, flags); if (entry != -1) return dictionary->ValueAt(entry); @@ -882,7 +882,8 @@ MUST_USE_RESULT static MaybeObject* ProbeCache(Isolate* isolate, heap->undefined_value()); if (!maybe_result->ToObject(&result)) return maybe_result; } - heap->public_set_non_monomorphic_cache(NumberDictionary::cast(result)); + heap->public_set_non_monomorphic_cache( + UnseededNumberDictionary::cast(result)); return probe; } |
