Home
last modified time | relevance | path

Searched refs:LoadTypedArrayLength (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/tests/
Dloop_optimization_test.cpp83 auto loadLength = builder.LoadTypedArrayLength(array, ParamType::AnyType()); in HWTEST_F_L0()
Dtyped_array_lowering_test.cpp42 HWTEST_F_L0(TypedArrayLoweringTests, LoadTypedArrayLength) in HWTEST_F_L0() argument
54 auto loadLength = builder.LoadTypedArrayLength(array, ParamType::AnyType()); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dmcr_opcodes.h217 V(LoadTypedArrayLength, LOAD_TYPED_ARRAY_LENGTH, GateFlags::NO_WRITE, 1, 1, 1) \
Dtyped_bytecode_lowering.cpp1094 GateRef result = builder_.LoadTypedArrayLength(array, arrayType, onHeap); in LowerTypedLdTypedArrayLength()
1221 auto length = builder_.LoadTypedArrayLength(receiver, receiverType, onHeap); in TryLowerTypedStObjByIndexForBuiltin()
1326 GateRef length = builder_.LoadTypedArrayLength(receiver, receiverType, onHeap); in LoadTypedArrayByIndex()
1387 GateRef length = builder_.LoadTypedArrayLength(receiver, receiverType, onHeap); in StoreTypedArrayByIndex()
Dmcr_circuit_builder.cpp226 GateRef CircuitBuilder::LoadTypedArrayLength(GateRef gate, ParamType paramType, OnHeapMode onHeap) in LoadTypedArrayLength() function in panda::ecmascript::kungfu::CircuitBuilder
233 GateRef ret = GetCircuit()->NewGate(circuit_->LoadTypedArrayLength(value), MachineType::I64, in LoadTypedArrayLength()
1171 auto ret = GetCircuit()->NewGate(circuit_->LoadTypedArrayLength(accessor.ToValue()), in InsertLoadArrayLength()
Dcircuit_builder.h526 …GateRef LoadTypedArrayLength(GateRef gate, ParamType paramType, OnHeapMode onHeap = OnHeapMode::NO…