Home
last modified time | relevance | path

Searched refs:Int32UnsignedLessThan (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dnew_object_stub_builder.cpp225 Branch(Int32UnsignedLessThan(*i, numArgs), &setArgumentsBegin, &setArgumentsEnd); in NewArgumentsList()
231 Branch(Int32UnsignedLessThan(*i, numArgs), &setArgumentsAgain, &setArgumentsEnd); in NewArgumentsList()
379 Branch(Int32UnsignedLessThan(*startOffset, end), &storeValue, exit); in InitializeWithSpeicalValue()
Dtyped_array_stub_builder.cpp154 Branch(Int32UnsignedLessThan(*start, arrLen), &storeValue, &exit); in FastCopyElementToArray()
Dstub_builder.cpp156 Branch(Int32UnsignedLessThan(*i, propsNum), &loopEnd, &afterLoop); in FindElementWithCache()
792 …Branch(Int32UnsignedLessThan(numberOfProps, inlinedProperties), &hasUnusedInProps, &noUnusedInProp… in AddPropertyByName()
1336 Branch(Int32UnsignedLessThan(*i, len), &loopHead, &afterLoop); in StringToElementIndex()
1348 Branch(Int32UnsignedLessThan(*i, len), &loopEnd, &afterLoop); in StringToElementIndex()
1546 Branch(Int32UnsignedLessThan(*i, length), &iLessLength, &exit); in CheckPolyHClass()
2239 Branch(Int32UnsignedLessThan(index, GetLengthOfTaggedArray(elements)), in GetPropertyByIndex()
4951 Branch(Int32UnsignedLessThan(*i, *res), &loopHead, &afterLoop); in MakeArgListWithHole()
4963 Branch(Int32UnsignedLessThan(*i, *res), &loopEnd, &afterLoop); in MakeArgListWithHole()
4992 Int32UnsignedLessThan(index, length)), &isVailedIndex, &notValidIndex); in JSAPIContainerGet()
5835 Branch(Int32UnsignedLessThan(*i, len), &loopHead, &afterLoop); in TryStringOrSymbolToElementIndex()
[all …]
Dlcr_lowering.cpp710 builder_.Branch(builder_.Int32UnsignedLessThan(*startOffset, end), &storeValue, exit); in InitializeWithSpeicalValue()
Dstub_builder-inl.h870 inline GateRef StubBuilder::Int32UnsignedLessThan(GateRef x, GateRef y) in Int32UnsignedLessThan() function
872 return env_->GetBuilder()->Int32UnsignedLessThan(x, y); in Int32UnsignedLessThan()
Dstub_builder.h262 GateRef Int32UnsignedLessThan(GateRef x, GateRef y);
Dcircuit_builder.h141 V(Int32UnsignedLessThan, Icmp, static_cast<BitField>(ICmpCondition::ULT)) \
Dtype_mcr_lowering.cpp454 GateRef lengthCheck = builder_.Int32UnsignedLessThan(index, length); in LowerIndexCheck()