Searched refs:globalResult (Results 1 - 4 of 4) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_regexp_stub_builder.cpp | 35 GateRef globalResult = TryToFastGetProperty(glue, thisValue, ConstantIndex::GLOBAL_STRING_INDEX); in GetFlags() local 41 BRANCH(TaggedIsTrue(globalResult), &globalKey, ¬GlobalKey); in GetFlags()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
H A D | interpreter-inl.cpp | 2712 JSTaggedValue globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, prop); in RunInternal() local 2713 if (!globalResult.IsHole()) { in RunInternal() 2714 SET_ACC(globalResult); in RunInternal() 2753 JSTaggedValue globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, prop); in RunInternal() local 2754 if (!globalResult.IsHole()) { in RunInternal() 2755 SET_ACC(globalResult); in RunInternal() 2804 auto globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, propKey); in RunInternal() local 2805 if (globalResult.IsHole()) { in RunInternal() 6685 auto globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, propKey); in RunInternal() local 6686 if (globalResult in RunInternal() [all...] |
H A D | interpreter_assembly.cpp | 2374 JSTaggedValue globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, prop); 2375 if (!globalResult.IsHole()) { 2376 SET_ACC(globalResult); 2434 auto globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, propKey); 2435 if (globalResult.IsHole()) { 5588 auto globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, propKey); 5589 if (globalResult.IsHole()) { 5637 JSTaggedValue globalResult = FastRuntimeStub::GetGlobalOwnProperty(thread, globalObj, prop); 5638 if (!globalResult.IsHole()) { 5639 SET_ACC(globalResult); [all...] |
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_regexp.cpp | 401 JSHandle<JSTaggedValue> globalResult = JSObject::GetProperty(thread, thisObj, globalKey).GetValue(); in GetAllFlagsInternal() local 403 if (globalResult->ToBoolean()) { in GetAllFlagsInternal()
|
Completed in 25 milliseconds