Home
last modified time | relevance | path

Searched refs:KeyedStoreIC (Results 1 – 25 of 35) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/regress/
Dregress-117409.js30 function KeyedStoreIC(a) { a[0] = Math.E; } class
36 KeyedStoreIC(literal);
37 KeyedStoreIC(literal);
49 KeyedStoreIC(literal);
Dregress-128018.js30 function KeyedStoreIC(a) { a[(1)] = Math.E; } class
34 KeyedStoreIC(literal);
/external/chromium_org/v8/src/
Dcode-factory.h38 static Callable KeyedStoreIC(Isolate* isolate, StrictMode mode);
Dcode-factory.cc37 Callable CodeFactory::KeyedStoreIC(Isolate* isolate, StrictMode mode) { in KeyedStoreIC() function in v8::internal::CodeFactory
Dbuiltins.cc1318 KeyedStoreIC::GenerateGeneric(masm, SLOPPY); in Generate_KeyedStoreIC_Generic()
1323 KeyedStoreIC::GenerateGeneric(masm, STRICT); in Generate_KeyedStoreIC_Generic_Strict()
1328 KeyedStoreIC::GenerateMiss(masm); in Generate_KeyedStoreIC_Miss()
1333 KeyedStoreIC::GenerateInitialize(masm); in Generate_KeyedStoreIC_Initialize()
1338 KeyedStoreIC::GenerateInitialize(masm); in Generate_KeyedStoreIC_Initialize_Strict()
1343 KeyedStoreIC::GeneratePreMonomorphic(masm); in Generate_KeyedStoreIC_PreMonomorphic()
1348 KeyedStoreIC::GeneratePreMonomorphic(masm); in Generate_KeyedStoreIC_PreMonomorphic_Strict()
1353 KeyedStoreIC::GenerateSloppyArguments(masm); in Generate_KeyedStoreIC_SloppyArguments()
Dtype-info.cc124 return KeyedStoreIC::GetKeyedAccessStoreMode(code->extra_ic_state()); in GetStoreMode()
/external/chromium_org/v8/src/ic/
Dic-compiler.cc74 KeyedStoreIC::GetKeyedAccessStoreMode(extra_ic_state)); in ComputeMonomorphic()
125 KeyedStoreIC::ComputeExtraICState(strict_mode, store_mode); in ComputeKeyedStoreMonomorphic()
143 DCHECK(KeyedStoreIC::GetKeyedAccessStoreMode(code->extra_ic_state()) == in ComputeKeyedStoreMonomorphic()
294 KeyedStoreIC::ComputeExtraICState(strict_mode, store_mode); in ComputeKeyedStorePolymorphic()
Dic.cc123 KeyedStoreIC::GetKeyedAccessStoreMode(extra_state)); in TraceIC()
493 return KeyedStoreIC::Clear(isolate, address, target, constant_pool); in Clear()
545 void KeyedStoreIC::Clear(Isolate* isolate, Address address, Code* target, in Clear()
1547 Handle<Code> KeyedStoreIC::StoreElementStub(Handle<JSObject> receiver, in StoreElementStub()
1573 KeyedStoreIC::GetKeyedAccessStoreMode(target()->extra_ic_state()); in StoreElementStub()
1666 Handle<Map> KeyedStoreIC::ComputeTransitionedMap( in ComputeTransitionedMap()
1707 KeyedAccessStoreMode KeyedStoreIC::GetStoreMode(Handle<JSObject> receiver, in GetStoreMode()
1783 MaybeHandle<Object> KeyedStoreIC::Store(Handle<Object> object, in Store()
2138 KeyedStoreIC ic(IC::NO_EXTRA_FRAME, isolate); in RUNTIME_FUNCTION()
2153 KeyedStoreIC ic(IC::EXTRA_CALL_FRAME, isolate); in RUNTIME_FUNCTION()
[all …]
Dic-inl.h147 void KeyedStoreIC::set_target(Code* code) { in set_target()
Dic.h530 class KeyedStoreIC : public StoreIC {
548 KeyedStoreIC(FrameDepth depth, Isolate* isolate) : StoreIC(depth, isolate) { in KeyedStoreIC() function
/external/chromium_org/v8/src/ic/x64/
Dic-x64.cc569 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
725 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
906 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
/external/chromium_org/v8/src/ic/ia32/
Dic-ia32.cc506 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
675 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
900 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
/external/chromium_org/v8/src/ic/x87/
Dic-x87.cc508 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
677 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
902 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
/external/chromium_org/v8/src/ic/mips64/
Dic-mips64.cc375 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
778 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
873 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
/external/chromium_org/v8/src/ic/arm64/
Dic-arm64.cc373 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
656 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
801 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
/external/chromium_org/v8/src/ic/mips/
Dic-mips.cc377 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
769 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
864 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
/external/chromium_org/v8/src/ic/arm/
Dic-arm.cc372 void KeyedStoreIC::GenerateSloppyArguments(MacroAssembler* masm) { in GenerateSloppyArguments()
616 void KeyedStoreIC::GenerateMiss(MacroAssembler* masm) { in GenerateMiss()
768 void KeyedStoreIC::GenerateGeneric(MacroAssembler* masm, in GenerateGeneric()
/external/chromium_org/v8/test/mjsunit/tools/
Dprofviz-test.log247 code-creation,KeyedStoreIC,10,0x2b828780,84,"A keyed store IC from the snapshot"
248 code-creation,KeyedStoreIC,10,0x2b8287e0,2082,"A keyed store IC from the snapshot"
249 code-creation,KeyedStoreIC,10,0x2b829020,84,"A keyed store IC from the snapshot"
250 code-creation,KeyedStoreIC,10,0x2b829080,2082,"A keyed store IC from the snapshot"
251 code-creation,KeyedStoreIC,10,0x2b8298c0,286,"A keyed store IC from the snapshot"
277 code-creation,KeyedStoreIC,10,0x2b82ac60,108,"A keyed store IC from the snapshot"
641 code-creation,KeyedStoreIC,10,0x2b828780,84,"A keyed store IC from the snapshot"
642 code-creation,KeyedStoreIC,10,0x2b8287e0,2082,"A keyed store IC from the snapshot"
643 code-creation,KeyedStoreIC,10,0x2b829020,84,"A keyed store IC from the snapshot"
644 code-creation,KeyedStoreIC,10,0x2b829080,2082,"A keyed store IC from the snapshot"
[all …]
/external/chromium_org/v8/src/compiler/
Djs-generic-lowering.cc293 Callable callable = CodeFactory::KeyedStoreIC(isolate(), strict_mode); in LowerJSStoreProperty()
/external/chromium_org/v8/src/arm64/
Dfull-codegen-arm64.cc2170 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2290 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4161 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()
/external/chromium_org/v8/src/x87/
Dfull-codegen-x87.cc2417 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2534 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4448 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()
/external/chromium_org/v8/src/ia32/
Dfull-codegen-ia32.cc2427 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2544 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4459 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()
/external/chromium_org/v8/src/x64/
Dfull-codegen-x64.cc2425 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2537 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4470 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()
/external/chromium_org/v8/src/mips/
Dfull-codegen-mips.cc2490 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2612 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4515 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()
/external/chromium_org/v8/src/arm/
Dfull-codegen-arm.cc2507 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitAssignment()
2623 Handle<Code> ic = CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in EmitKeyedPropertyAssignment()
4496 CodeFactory::KeyedStoreIC(isolate(), strict_mode()).code(); in VisitCountOperation()

12