/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_regexp_stub_builder.cpp | 41 BRANCH(TaggedIsTrue(globalResult), &globalKey, ¬GlobalKey); in GetFlags() 54 BRANCH(TaggedIsTrue(ignoreCaseResult), &ignoreCaseKey, ¬IgnoreCaseKey); in GetFlags() 67 BRANCH(TaggedIsTrue(multilineResult), &multilineKey, ¬MultilineKey); in GetFlags() 80 BRANCH(TaggedIsTrue(dotAllResult), &dotAllKey, ¬DotAllKey); in GetFlags() 93 BRANCH(TaggedIsTrue(unicodeResult), &unicodeKey, ¬UnicodeKey); in GetFlags() 106 BRANCH(TaggedIsTrue(stickyResult), &stickyKey, ¬StickyKey); in GetFlags() 119 BRANCH(TaggedIsTrue(indicesResult), &hasIndicesKey, ¬HasIndicesKey); in GetFlags()
|
H A D | builtins_array_stub_builder.cpp | 604 BRANCH(TaggedIsTrue(hasProp), &hasProperty, &arrayValueNotHole); in Filter() 641 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &find, &checkArray); in Filter() 764 BRANCH(TaggedIsTrue(hasProp), &hasProperty, &arrayValueNotHole); in Map() 901 BRANCH(TaggedIsTrue(hasProp), &hasProperty, &loopEnd); in ForEach() 951 BRANCH(TaggedIsTrue(hasProp), &hasProperty, &loopEnd); in ForEach() 1471 BRANCH(TaggedIsTrue(presentValueHasProp), &presentValueHasProperty, &afterGettingpresentValue); in DoSort() 1506 BRANCH(TaggedIsTrue(middleValueHasProp), &middleValueHasProperty, &afterGettingmiddleValue); in DoSort() 1606 BRANCH(TaggedIsTrue(previousValueHasProp), in DoSort() 2189 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &find, &loopEnd); in Find() 2300 BRANCH(TaggedIsTrue(FastToBoolea in FindIndex() [all...] |
H A D | builtins_dataview_stub_builder.cpp | 123 BRANCH(TaggedIsTrue(littleEndianHandle), &littleEnd, ¬LittleEnd);
in SetValueInBufferForInt32() 167 BRANCH(TaggedIsTrue(littleEndianHandle), &littleEnd, ¬LittleEnd);
in SetValueInBufferForInt64()
|
H A D | builtins_typedarray_stub_builder.cpp | 771 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &find, &loopEnd);
in Find() 1385 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &retValueIsTrue, &loopEnd);
in Some() 1489 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &retValueIsTrue, &loopEnd);
in Filter() 2343 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &find, &loopEnd);
in FindIndex() 2454 BRANCH(TaggedIsTrue(FastToBoolean(retValue)), &find, &loopEnd);
in FindLastIndex()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | mcr_circuit_builder.h | 498 GateRef CircuitBuilder::TaggedIsTrue(GateRef x) in TaggedIsTrue() function in panda::ecmascript::kungfu::CircuitBuilder 520 return BitOr(TaggedIsFalse(x), TaggedIsTrue(x)); in TaggedIsBoolean()
|
H A D | operations_stub_builder.cpp | 43 BRANCH(TaggedIsTrue(*result), &resultIsTrue, &resultNotTrue); in Equal() 83 BRANCH(TaggedIsTrue(*result), &resultIsTrue, &resultNotTrue); in NotEqual()
|
H A D | typed_native_inline_lowering.cpp | 2748 BRANCH_CIR(builder_.TaggedIsTrue(*result), &exit, &callRuntime); in LowerReflectHas() 3292 BRANCH_CIR(builder_.TaggedIsTrue(builder_.FastToBoolean(nativeCall)), &findElement, &noFindElement); in LowerArrayFindOrFindIndex() 3378 BRANCH_CIR(builder_.TaggedIsTrue(builder_.FastToBoolean(callJs)), &returnTrue, &afterLoop); in LowerArrayFilter() 3551 BRANCH_CIR(builder_.TaggedIsTrue(builder_.FastToBoolean(callJs)), &findElement, &afterLoop); in LowerArraySome()
|
H A D | circuit_builder.cpp | 1468 BRANCH_CIR2(TaggedIsTrue(value), &returnTrue, &returnFalse); in FastToBoolean()
|
H A D | mcr_lowering.cpp | 699 return builder_.TaggedIsTrue(value); in ConvertTaggedBooleanToBool()
|
H A D | stub_builder.cpp | 615 result = TaggedIsTrue(temp); in CreateDataProperty() 5421 BRANCH(TaggedIsTrue(obj), &objIsTrue, &objNotTrue); in FastTypeOf() 6755 BRANCH(TaggedIsTrue(value), &returnTrue, &returnFalse); in FastToBoolean() 6854 Branch(TaggedIsTrue(value), &returnTrue, &returnFalse); in FastToBooleanBaseline() 6957 BRANCH(TaggedIsTrue(value), &isTrue, &isNotTrue); in FastToBooleanWithProfile() 7077 Branch(TaggedIsTrue(value), &isTrue, &isNotTrue); in FastToBooleanWithProfileBaseline()
|
H A D | new_object_stub_builder.cpp | 1423 BRANCH(TaggedIsTrue(isStartHeapSampling), callRuntime, &next);
in AllocateInSOldPrologue() 1473 BRANCH(TaggedIsTrue(isStartHeapSampling), callRuntime, &next);
in AllocateInYoungPrologue()
|
H A D | stub_builder-inl.h | 885 inline GateRef StubBuilder::TaggedIsTrue(GateRef x) in TaggedIsTrue() function in panda::ecmascript::kungfu::StubBuilder 887 return env_->GetBuilder()->TaggedIsTrue(x); in TaggedIsTrue()
|
H A D | circuit_builder.h | 709 inline GateRef TaggedIsTrue(GateRef x);
|
H A D | stub_builder.h | 307 GateRef TaggedIsTrue(GateRef x);
|
H A D | interpreter_stub.cpp | 2589 BRANCH(TaggedIsTrue(acc), &accEqualTrue, &accNotEqualTrue);
in DECLARE_ASM_HANDLER() 2630 BRANCH(TaggedIsTrue(acc), &accEqualTrue, &accNotEqualTrue);
in DECLARE_ASM_HANDLER() 2671 BRANCH(TaggedIsTrue(acc), &accEqualTrue, &accNotEqualTrue);
in DECLARE_ASM_HANDLER()
|
H A D | slowpath_lowering.cpp | 2832 BRANCH_CIR(builder_.TaggedIsTrue(obj), &objIsTrue, &objNotTrue); in LowerTypeof()
|
H A D | typed_hcr_lowering.cpp | 757 BRANCH_CIR(builder_.TaggedIsTrue(src), &isTrue, &isFalse); in LowerPrimitiveToNumber()
|