Searched refs:isEqual (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | mem_map_allocator.h | 174 bool isEqual = false; in MergeList() local 186 isEqual = true; in MergeList() 188 if (isEqual) { in MergeList()
|
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/passes/ |
H A D | ark_gvn.h | 87 static bool isEqual(const BuiltinKey &a, const BuiltinKey &b) in isEqual() function
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | async_function_lowering.cpp | 42 GateRef isEqual = builder_.Equal(newTarget, builder_.Undefined());
in ProcessJumpTable() local 44 GateRef ifBranchCondition = builder_.Branch(stateEntry_, isEqual, 1, 1, "checkNewTarget");
in ProcessJumpTable()
|
H A D | new_object_stub_builder.cpp | 2278 Label isEqual(env);
in NewJSObjectByConstructor() 2280 BRANCH(IntPtrEqual(constructor, newTarget), &isEqual, &slowPath);
in NewJSObjectByConstructor() local 2281 Bind(&isEqual);
in NewJSObjectByConstructor()
|
H A D | stub_builder.cpp | 2320 Label isEqual(env); in TryToElementsIndex() 2321 BRANCH(DoubleEqual(number, ChangeInt32ToFloat64(integer)), &isEqual, &exit); in TryToElementsIndex() local 2322 Bind(&isEqual); in TryToElementsIndex() 5647 GateRef isEqual = IntPtrEqual(instof, function); in TryFastHasInstance() local 5648 BRANCH(isEqual, &tryFastPath, &slowPath); in TryFastHasInstance() 6064 GateRef isEqual = SameValue(glue, *object, *constructorPrototype); in OrdinaryHasInstance() local 6065 Branch(isEqual, &strictEqual1, ¬StrictEqual1); in OrdinaryHasInstance()
|
H A D | typed_hcr_lowering.cpp | 2903 GateRef isEqual = builder_.Equal(*object, *constructorPrototype); in LowerOrdinaryHasInstance() local 2905 BRANCH_CIR(isEqual, &strictEqual1, ¬StrictEqual1); in LowerOrdinaryHasInstance()
|
/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/ |
H A D | common.h | 236 bool isEqual = (std::string(funcName) == std::string(reinterpret_cast<const char *>(str))); in ParseToGraph() 239 if (!mda.IsExternal() && !mda.IsAbstract() && !mda.IsNative() && isEqual) { in ParseToGraph()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_object_stub_builder.cpp | 1394 Label isEqual(env);
in ObjectSetPrototype() 1399 BRANCH(IntPtrEqual(proto, current), &isEqual, ¬Equal);
in ObjectSetPrototype() local 1400 Bind(&isEqual);
in ObjectSetPrototype()
|
H A D | builtins_typedarray_stub_builder.cpp | 3416 Label isEqual(env); \
in GetOnHeapHclassFromType() 3419 BRANCH(IntPtrEqual(objHclass, hclass), &isEqual, &slowPath); \
in GetOnHeapHclassFromType() 3420 Bind(&isEqual); \
in GetOnHeapHclassFromType()
|
Completed in 42 milliseconds