Home
last modified time | relevance | path

Searched refs:tryFastPath (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dic_stub_builder.h47 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()
Dic_stub_builder.cpp145 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByName() argument
150 SetLabels(tryFastPath, slowPath, success); in LoadICByName()
161 void ICStubBuilder::StoreICByName(Variable* result, Label* tryFastPath, Label *slowPath, Label *suc… in StoreICByName() argument
166 SetLabels(tryFastPath, slowPath, success); in StoreICByName()
180 … Variable *result, Label *tryFastPath, Label *slowPath, Label *success, ProfileOperation callback) in LoadICByValue() argument
192 SetLabels(tryFastPath, slowPath, success); in LoadICByValue()
240 void ICStubBuilder::StoreICByValue(Variable* result, Label* tryFastPath, Label *slowPath, Label *su… in StoreICByValue() argument
245 SetLabels(tryFastPath, slowPath, success); in StoreICByValue()
264 void ICStubBuilder::TryLoadGlobalICByName(Variable* result, Label* tryFastPath, Label *slowPath, La… in TryLoadGlobalICByName() argument
269 SetLabels(tryFastPath, slowPath, success); in TryLoadGlobalICByName()
[all …]
Daccess_object_stub_builder.cpp31 Label tryFastPath(env); in LoadObjByName() local
38 builder.LoadICByName(&result, &tryFastPath, &slowPath, &exit, callback); in LoadObjByName()
39 Bind(&tryFastPath); in LoadObjByName()
96 Label tryFastPath(env); in StoreObjByName() local
102 builder.StoreICByName(&result, &tryFastPath, &slowPath, &exit); in StoreObjByName()
103 Bind(&tryFastPath); in StoreObjByName()
146 Label tryFastPath(env); in LoadObjByValue() local
153 builder.LoadICByValue(&result, &tryFastPath, &slowPath, &exit, callback); in LoadObjByValue()
154 Bind(&tryFastPath); in LoadObjByValue()
208 Label tryFastPath(env); in StoreObjByValue() local
[all …]
Dstub_builder.cpp4236 Label tryFastPath(env); in TryFastHasInstance() local
4238 Branch(isEqual, &tryFastPath, &slowPath); in TryFastHasInstance()
4239 Bind(&tryFastPath); in TryFastHasInstance()