/external/v8/src/ic/ |
H A D | ic-compiler.cc | 245 MapHandleList* receiver_maps) { 246 Isolate* isolate = receiver_maps->at(0)->GetIsolate(); 250 Handle<Object> probe = cache->Lookup(receiver_maps, flags); 253 TypeHandleList types(receiver_maps->length()); 254 for (int i = 0; i < receiver_maps->length(); i++) { 255 types.Add(HeapType::Class(receiver_maps->at(i), isolate)); 257 CodeHandleList handlers(receiver_maps->length()); 259 compiler.CompileElementHandlers(receiver_maps, &handlers); 267 PolymorphicCodeCache::Update(cache, receiver_maps, flags, code); 284 MapHandleList* receiver_maps, KeyedAccessStoreMod 244 ComputeKeyedLoadPolymorphic( MapHandleList* receiver_maps) argument 283 ComputeKeyedStorePolymorphic( MapHandleList* receiver_maps, KeyedAccessStoreMode store_mode, StrictMode strict_mode) argument 372 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, KeyedAccessStoreMode store_mode) argument [all...] |
H A D | ic-compiler.h | 45 static Handle<Code> ComputeKeyedLoadPolymorphic(MapHandleList* receiver_maps); 47 MapHandleList* receiver_maps, KeyedAccessStoreMode store_mode, 88 Handle<Code> CompileKeyedStorePolymorphic(MapHandleList* receiver_maps, 90 Handle<Code> CompileKeyedStorePolymorphic(MapHandleList* receiver_maps,
|
H A D | handler-compiler.cc | 379 MapHandleList* receiver_maps, CodeHandleList* handlers) { 380 for (int i = 0; i < receiver_maps->length(); ++i) { 381 Handle<Map> receiver_map = receiver_maps->at(i); 378 CompileElementHandlers( MapHandleList* receiver_maps, CodeHandleList* handlers) argument
|
H A D | handler-compiler.h | 267 void CompileElementHandlers(MapHandleList* receiver_maps,
|
H A D | ic.cc | 635 static bool AddOneReceiverMapIfMissing(MapHandleList* receiver_maps, argument 638 for (int current = 0; current < receiver_maps->length(); ++current) { 639 if (!receiver_maps->at(current).is_null() && 640 receiver_maps->at(current).is_identical_to(new_receiver_map)) { 644 receiver_maps->Add(new_receiver_map);
|
/external/v8/src/ic/mips/ |
H A D | ic-compiler-mips.cc | 82 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 87 int receiver_count = receiver_maps->length(); 92 Operand(receiver_maps->at(i))); 95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i))); 81 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/mips64/ |
H A D | ic-compiler-mips64.cc | 82 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 87 int receiver_count = receiver_maps->length(); 92 Operand(receiver_maps->at(i))); 95 __ Branch(&next_map, ne, scratch1(), Operand(receiver_maps->at(i))); 81 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/arm/ |
H A D | ic-compiler-arm.cc | 97 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 102 int receiver_count = receiver_maps->length(); 105 __ mov(ip, Operand(receiver_maps->at(i))); 96 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/arm64/ |
H A D | ic-compiler-arm64.cc | 98 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 106 int receiver_count = receiver_maps->length(); 109 __ Cmp(scratch1(), Operand(receiver_maps->at(i))); 97 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/ia32/ |
H A D | ic-compiler-ia32.cc | 99 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 104 for (int i = 0; i < receiver_maps->length(); ++i) { 105 __ cmp(scratch1(), receiver_maps->at(i)); 98 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/x64/ |
H A D | ic-compiler-x64.cc | 42 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 48 int receiver_count = receiver_maps->length(); 51 __ Cmp(scratch1(), receiver_maps->at(i)); 41 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ic/x87/ |
H A D | ic-compiler-x87.cc | 99 MapHandleList* receiver_maps, CodeHandleList* handler_stubs, 104 for (int i = 0; i < receiver_maps->length(); ++i) { 105 __ cmp(scratch1(), receiver_maps->at(i)); 98 CompileKeyedStorePolymorphic( MapHandleList* receiver_maps, CodeHandleList* handler_stubs, MapHandleList* transitioned_maps) argument
|
/external/v8/src/ |
H A D | hydrogen.cc | 8528 SmallMapList receiver_maps; local 8531 &receiver_maps, 8541 SmallMapList* receiver_maps) { 8546 receiver_maps, 8556 SmallMapList receiver_maps(1, zone()); 8557 receiver_maps.Add(receiver_map, zone()); 8560 &receiver_maps, 8570 SmallMapList receiver_maps(1, zone()); 8571 receiver_maps.Add(receiver_map, zone()); 8574 &receiver_maps, 8538 TryInlineApiMethodCall( Call* expr, HValue* receiver, SmallMapList* receiver_maps) argument 8581 TryInlineApiCall(Handle<JSFunction> function, HValue* receiver, SmallMapList* receiver_maps, int argc, BailoutId ast_id, ApiCallType call_type) argument [all...] |
H A D | hydrogen.h | 2376 SmallMapList* receiver_maps,
|