Searched refs:tryFastPath (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | ic_stub_builder.h | 47 void LoadICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success, 49 void StoreICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success); 50 void LoadICByValue(Variable* result, Label* tryFastPath, Label *slowPath, Label *success, 52 void StoreICByValue(Variable* result, Label* tryFastPath, Label *slowPath, Label *success); 53 … void TryLoadGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success); 54 …void TryStoreGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *success); 58 void SetLabels(Label* tryFastPath, Label *slowPath, Label *success) in SetLabels() argument 60 tryFastPath_ = tryFastPath; in SetLabels()
|
| D | access_object_stub_builder.cpp | 30 Label tryFastPath(env); in LoadObjByName() local 37 builder.LoadICByName(&result, &tryFastPath, &slowPath, &exit, callback); in LoadObjByName() 38 Bind(&tryFastPath); in LoadObjByName() 101 Label tryFastPath(env); in StoreObjByName() local 107 builder.StoreICByName(&result, &tryFastPath, &slowPath, &exit); in StoreObjByName() 108 Bind(&tryFastPath); in StoreObjByName() 151 Label tryFastPath(env); in LoadObjByValue() local 158 builder.LoadICByValue(&result, &tryFastPath, &slowPath, &exit, callback); in LoadObjByValue() 159 Bind(&tryFastPath); in LoadObjByValue() 213 Label tryFastPath(env); in StoreObjByValue() local [all …]
|
| D | ic_stub_builder.cpp | 100 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByName() argument 105 SetLabels(tryFastPath, slowPath, success); in LoadICByName() 118 void ICStubBuilder::StoreICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *suc… in StoreICByName() argument 123 SetLabels(tryFastPath, slowPath, success); in StoreICByName() 137 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByValue() argument 143 SetLabels(tryFastPath, slowPath, success); in LoadICByValue() 162 void ICStubBuilder::StoreICByValue(Variable* result, Label* tryFastPath, Label *slowPath, Label *su… in StoreICByValue() argument 168 SetLabels(tryFastPath, slowPath, success); in StoreICByValue() 187 void ICStubBuilder::TryLoadGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, La… in TryLoadGlobalICByName() argument 192 SetLabels(tryFastPath, slowPath, success); in TryLoadGlobalICByName() [all …]
|
| D | stub_builder.cpp | 3523 Label tryFastPath(env); in TryFastHasInstance() local 3525 Branch(isEqual, &tryFastPath, &slowPath); in TryFastHasInstance() 3526 Bind(&tryFastPath); in TryFastHasInstance()
|