Home
last modified time | relevance | path

Searched refs:Int32LessThan (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_string_stub_builder.cpp301 Branch(Int32LessThan(*i, len), &nextCount, &exit); in CanBeCompressed()
374 return Int32LessThan(Int32Sub(data, Int32(1)), Int32(base::utf_helper::UTF8_1B_MAX)); in IsASCIICharacter()
464 Branch(Int32LessThan(*j, end), &lessEnd, &nextCount2); in StringIndexOf()
538 Branch(Int32LessThan(pos, Int32(0)), &posLessZero, &posNotLessZero); in StringIndexOf()
547 Branch(Int32LessThan(max, Int32(0)), &exit, &maxNotLessZero); in StringIndexOf()
Dcontainers_stub_builder.cpp100 Branch(Int32LessThan(*k, *length), &next, &afterLoop); in ContainersCommonFuncCall()
218 Branch(Int32LessThan(*k, *length), &next, &afterLoop); in QueueCommonFuncCall()
431 Branch(Int32LessThan(*index, *length), &next, &afterLoop); in ContainersLightWeightCall()
544 Branch(Int32LessThan(*index, *length), &next, &afterLoop); in ContainersHashCall()
675 Branch(Int32LessThan(*index, *length), &next, &afterLoop); in ContainersLinkedListCall()
Dbuiltins_stubs.cpp196 Branch(Int32LessThan(*pos, Int32(0)), &exit, &posNotLessZero); in DECLARE_BUILTINS()
538 Branch(Int32LessThan(*pos, Int32(0)), &posGreaterLen, &posNotLessZero); in DECLARE_BUILTINS()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dinterpreter_stub.cpp119 …Branch(Int32LessThan(*varHotnessCounter, Int32(0)), &slowPath, &dispatch); …
647 Branch(Int32LessThan(*i, level), &loopHead, &afterLoop); in DECLARE_ASM_HANDLER()
651 Branch(Int32LessThan(*i, level), &loopEnd, &afterLoop); in DECLARE_ASM_HANDLER()
676 Branch(Int32LessThan(*i, level), &loopHead, &afterLoop); in DECLARE_ASM_HANDLER()
680 Branch(Int32LessThan(*i, level), &loopEnd, &afterLoop); in DECLARE_ASM_HANDLER()
704 Branch(Int32LessThan(*i, level), &loopHead, &afterLoop); in DECLARE_ASM_HANDLER()
708 Branch(Int32LessThan(*i, level), &loopEnd, &afterLoop); in DECLARE_ASM_HANDLER()
731 Branch(Int32LessThan(*i, level), &loopHead, &afterLoop); in DECLARE_ASM_HANDLER()
735 Branch(Int32LessThan(*i, level), &loopEnd, &afterLoop); in DECLARE_ASM_HANDLER()
757 Branch(Int32LessThan(*i, level), &loopHead, &afterLoop); in DECLARE_ASM_HANDLER()
[all …]
Dinterpreter_stub-inl.h390 Branch(Int32LessThan(*i, num), &pushUndefinedBegin, &pushUndefinedEnd); in PushUndefined()
394 Branch(Int32LessThan(*i, num), &pushUndefinedAgain, &pushUndefinedEnd); in PushUndefined()
Dtype_mcr_lowering.cpp415 builder_.Branch(builder_.Int32LessThan(levelGate, length), levelValid, exit); in BuildCompareSubTyping()
918 builder_.Branch(builder_.Int32LessThan(value, bottomValue), &isUnderSpill, &exit); in LowerUInt8ClampedArrayStoreElement()
1337 builder_.Branch(builder_.Int32LessThan(levelGate, length), &levelValid, &exit); in LowerInlineAccessorCheck()
Dnew_object_stub_builder.cpp187 Branch(Int32LessThan(len, Int32(MAX_TAGGED_ARRAY_LENGTH)), &next, &slowPath); in NewTaggedArray()
Dnumber_speculative_lowering.cpp630 condition = builder_.Int32LessThan(left, right); in CompareInts()
Dlcr_lowering.cpp677 GateRef rightLessZero = builder_.Int32LessThan(right, builder_.Int32(0)); in LowerInt32DivWithCheck()
Dstub_builder.cpp1661 Branch(Int32LessThan(index, Int32(0)), &indexLessZero, &indexNotLessZero); in LoadElement()
1719 Branch(Int32LessThan(index, Int32(0)), &indexLessZero, &indexNotLessZero); in ICStoreElement()
2136 Branch(Int32LessThan(arrayIndex, Int32(0)), &ltZero, &notLtZero); in GetKeyFromDictionary()
4576 GateRef leftNegative = Int32LessThan(GetInt32OfTInt(left), Int32(0)); in FastAddSubAndMul()
4577 GateRef rightNegative = Int32LessThan(GetInt32OfTInt(right), Int32(0)); in FastAddSubAndMul()
4624 Branch(Int32LessThan(intRight, Int32(0)), bailout, &leftIsNotZero); in FastIntDiv()
5035 Branch(Int32LessThan(exp, bits), &exit, &overflow); in DoubleToInt()
Dslowpath_lowering.cpp2363 builder_.Branch(builder_.Int32LessThan(*i, level), &loopHead, &exit); in LowerLdLexVar()
2367 builder_.Branch(builder_.Int32LessThan(*i, level), &loopEnd, &exit); in LowerLdLexVar()
2397 builder_.Branch(builder_.Int32LessThan(*i, level), &loopHead, &exit); in LowerStLexVar()
2401 builder_.Branch(builder_.Int32LessThan(*i, level), &loopEnd, &exit); in LowerStLexVar()
Dstub_builder-inl.h850 inline GateRef StubBuilder::Int32LessThan(GateRef x, GateRef y) in Int32LessThan() function
852 return env_->GetBuilder()->Int32LessThan(x, y); in Int32LessThan()
Dstub_builder.h258 GateRef Int32LessThan(GateRef x, GateRef y);
Dcircuit_builder-inl.h178 Branch(Int32LessThan(exp, bits), exit, &overflow); in DoubleToInt()
Dcircuit_builder.h137 V(Int32LessThan, Icmp, static_cast<BitField>(ICmpCondition::SLT)) \
Doperations_stub_builder.cpp147 Branch(Int32LessThan(intLeft, intRight), &leftLessRight, &leftNotLessRight); in Less()