• Home
  • Raw
  • Download

Lines Matching refs:StubCache

44 StubCache::StubCache(Isolate* isolate) : isolate_(isolate) {  in StubCache()  function in v8::internal::StubCache
46 memset(primary_, 0, sizeof(primary_[0]) * StubCache::kPrimaryTableSize); in StubCache()
47 memset(secondary_, 0, sizeof(secondary_[0]) * StubCache::kSecondaryTableSize); in StubCache()
51 void StubCache::Initialize(bool create_heap_objects) { in Initialize()
61 Code* StubCache::Set(String* name, Map* map, Code* code) { in Set()
102 MaybeObject* StubCache::ComputeLoadNonexistent(String* name, in ComputeLoadNonexistent()
142 MaybeObject* StubCache::ComputeLoadField(String* name, in ComputeLoadField()
168 MaybeObject* StubCache::ComputeLoadCallback(String* name, in ComputeLoadCallback()
195 MaybeObject* StubCache::ComputeLoadConstant(String* name, in ComputeLoadConstant()
222 MaybeObject* StubCache::ComputeLoadInterceptor(String* name, in ComputeLoadInterceptor()
247 MaybeObject* StubCache::ComputeLoadNormal() { in ComputeLoadNormal()
252 MaybeObject* StubCache::ComputeLoadGlobal(String* name, in ComputeLoadGlobal()
282 MaybeObject* StubCache::ComputeKeyedLoadField(String* name, in ComputeKeyedLoadField()
308 MaybeObject* StubCache::ComputeKeyedLoadConstant(String* name, in ComputeKeyedLoadConstant()
335 MaybeObject* StubCache::ComputeKeyedLoadInterceptor(String* name, in ComputeKeyedLoadInterceptor()
361 MaybeObject* StubCache::ComputeKeyedLoadCallback(String* name, in ComputeKeyedLoadCallback()
389 MaybeObject* StubCache::ComputeKeyedLoadArrayLength(String* name, in ComputeKeyedLoadArrayLength()
413 MaybeObject* StubCache::ComputeKeyedLoadStringLength(String* name, in ComputeKeyedLoadStringLength()
436 MaybeObject* StubCache::ComputeKeyedLoadFunctionPrototype( in ComputeKeyedLoadFunctionPrototype()
460 MaybeObject* StubCache::ComputeKeyedLoadSpecialized(JSObject* receiver) { in ComputeKeyedLoadSpecialized()
488 MaybeObject* StubCache::ComputeStoreField(String* name, in ComputeStoreField()
516 MaybeObject* StubCache::ComputeKeyedStoreSpecialized( in ComputeKeyedStoreSpecialized()
619 MaybeObject* StubCache::ComputeKeyedLoadOrStoreExternalArray( in ComputeKeyedLoadOrStoreExternalArray()
661 MaybeObject* StubCache::ComputeStoreNormal(StrictModeFlag strict_mode) { in ComputeStoreNormal()
668 MaybeObject* StubCache::ComputeStoreGlobal(String* name, in ComputeStoreGlobal()
694 MaybeObject* StubCache::ComputeStoreCallback( in ComputeStoreCallback()
722 MaybeObject* StubCache::ComputeStoreInterceptor( in ComputeStoreInterceptor()
748 MaybeObject* StubCache::ComputeKeyedStoreField(String* name, in ComputeKeyedStoreField()
779 MaybeObject* StubCache::ComputeCallConstant(int argc, in ComputeCallConstant()
838 MaybeObject* StubCache::ComputeCallField(int argc, in ComputeCallField()
889 MaybeObject* StubCache::ComputeCallInterceptor(int argc, in ComputeCallInterceptor()
935 MaybeObject* StubCache::ComputeCallNormal(int argc, in ComputeCallNormal()
948 MaybeObject* StubCache::ComputeCallGlobal(int argc, in ComputeCallGlobal()
1041 Code* StubCache::FindCallInitialize(int argc, in FindCallInitialize()
1058 MaybeObject* StubCache::ComputeCallInitialize(int argc, in ComputeCallInitialize()
1077 Handle<Code> StubCache::ComputeCallInitialize(int argc, InLoopFlag in_loop) { in ComputeCallInitialize()
1091 Handle<Code> StubCache::ComputeKeyedCallInitialize(int argc, in ComputeKeyedCallInitialize()
1107 MaybeObject* StubCache::ComputeCallPreMonomorphic(int argc, in ComputeCallPreMonomorphic()
1126 MaybeObject* StubCache::ComputeCallNormal(int argc, in ComputeCallNormal()
1145 MaybeObject* StubCache::ComputeCallMegamorphic(int argc, in ComputeCallMegamorphic()
1164 MaybeObject* StubCache::ComputeCallMiss(int argc, Code::Kind kind) { in ComputeCallMiss()
1185 MaybeObject* StubCache::ComputeCallDebugBreak(int argc, Code::Kind kind) { in ComputeCallDebugBreak()
1202 MaybeObject* StubCache::ComputeCallDebugPrepareStepIn(int argc, in ComputeCallDebugPrepareStepIn()
1221 void StubCache::Clear() { in Clear()
1235 void StubCache::CollectMatchingMaps(ZoneMapList* types, in CollectMatchingMaps()