/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_array_stub_builder.cpp | 111 BRANCH(BitOr(Int64GreaterThanOrEqual(*actualIndex, thisLen), Int64LessThan(*actualIndex, Int64(0))), in With() 127 BRANCH(Int64LessThan(*k, thisLen), &loopNext, &loopExit); in With() 348 BRANCH(Int64LessThan(*fromKey, thisLen), &loopNext, &loopExit); in Shift() 482 BRANCH(Int64LessThan(*i, thisLen), &next, &loopExit); in Concat() 506 BRANCH(Int64LessThan(*k, argLen), &next1, &loopExit1); in Concat() 592 BRANCH(Int64LessThan(*i, *thisArrLenVar), &next, &loopExit); in Filter() 653 BRANCH(Int64LessThan(tmpArrLen, *thisArrLenVar), &lenChange, &kValueIsHole); in Filter() 688 BRANCH(Int64LessThan(*toIndex, len), &needTrim, exit); in Filter() 752 BRANCH(Int64LessThan(*i, *thisArrLenVar), &next, &loopExit); in Map() 804 BRANCH(Int64LessThan(tmpArrLe in Map() [all...] |
H A D | builtins_typedarray_stub_builder.cpp | 63 BRANCH(Int64LessThan(index, Int64(0)), &exit, &indexNotLessZero);
in CheckTypedArrayIndexInRange() 403 BRANCH(Int64LessThan(position, Int64(0)), &positionLessThanZero, &positionNotLessThanZero);
in CalculatePositionWithLength() 416 BRANCH(Int64LessThan(position, length), &positionLessThanLength, &positionNotLessThanLength);
in CalculatePositionWithLength() 553 BRANCH(Int64LessThan(fromIndexInt, Int64(0)), &isFromIndexLessZero, &isFromIndexNotLessZero);
in LastIndexOf() 588 BRANCH(Int64LessThan(*relativeFromIndex, Int64(0)), &loopExit, &loopNext);
in LastIndexOf() 651 BRANCH(Int64LessThan(*fromIndex, Int64(0)), &lessThanZero, &next);
in IndexOf() 655 BRANCH(Int64LessThan(*fromIndex, Int64(0)), &stillLessThanZero, &next);
in IndexOf() 676 BRANCH(Int64LessThan(*curIndex, *thisArrLen), &loopNext, &loopExit);
in IndexOf() 742 BRANCH(Int64LessThan(*i, thisArrLen), &next, &loopExit);
in Find() 944 BRANCH(Int64LessThan(Int64Su in CopyWithin() [all...] |
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | typed_native_inline_lowering.cpp | 3396 BRANCH_CIR(builder_.Int64LessThan(*i, length), &loopEnd, &exit); in LowerArrayFilter() 3405 BRANCH_CIR(builder_.Int64LessThan(*toIndex, length), &needTrim, &quit); in LowerArrayFilter() 3487 BRANCH_CIR(builder_.Int64LessThan(*i, length), &loopEnd, &finish); in LowerArrayMap() 3556 BRANCH_CIR(builder_.Int64LessThan(*i, length), &loopEnd, &exit); in LowerArraySome() 3626 BRANCH_CIR(builder_.Int64LessThan(*i, length), &loopEnd, &exit); in LowerArrayEvery()
|
H A D | stub_builder-inl.h | 846 BRANCH(Int64LessThan(exp, Int64(0)), &zero, &nonZero); in DoubleTrunc() 1100 inline GateRef StubBuilder::Int64LessThan(GateRef x, GateRef y) in Int64LessThan() function in panda::ecmascript::kungfu::StubBuilder 1102 return env_->GetBuilder()->Int64LessThan(x, y); in Int64LessThan()
|
H A D | stub_builder.cpp | 2269 BRANCH(Int64LessThan(*n, Int64(JSObject::MAX_ELEMENT_INDEX)), in StringToElementIndex() 4282 BRANCH(Int64LessThan(index, length), &inRange, &ifEnd); in SetPropertyByIndex() 4284 BRANCH(Int64LessThan(index, length), &inRange, &loopExit); in SetPropertyByIndex() 4488 BRANCH(Int64LessThan(index, length), &inRange, &ifEnd); in DefinePropertyByIndex() 8358 .Or(Int64LessThan(exp, Int64(0))) in CanDoubleRepresentInt() 8635 BRANCH(Int64LessThan(*n, Int64(JSObject::MAX_ELEMENT_INDEX)), in TryStringOrSymbolToElementIndex()
|
H A D | circuit_builder.h | 169 V(Int64LessThan, Icmp, static_cast<BitField>(ICmpCondition::SLT)) \
|
H A D | stub_builder.h | 352 GateRef Int64LessThan(GateRef x, GateRef y);
|