Lines Matching refs:idx
124 #define GET_VREG(idx) (sp[idx]) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
126 #define GET_VREG_VALUE(idx) (JSTaggedValue(sp[idx])) // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
128 #define SET_VREG(idx, val) (sp[idx] = (val)); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic)
5598 uint32_t idx = READ_INST_16_1();
5600 << " imm" << idx;
5605 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx);
5615 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, false, JSTaggedValue::Undefined());
5621 uint32_t idx = READ_INST_16_2();
5623 << " imm" << idx;
5628 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx);
5638 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, false, JSTaggedValue::Undefined());
5644 uint32_t idx = READ_INST_32_1();
5646 << " imm" << idx;
5651 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx);
5661 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, false, JSTaggedValue::Undefined());
5668 uint32_t idx = READ_INST_32_2();
5670 << " v" << v0 << " imm" << idx;
5675 JSTaggedValue res = FastRuntimeStub::GetPropertyByIndex(thread, receiver, idx);
5685 JSTaggedValue res = SlowRuntimeStub::LdObjByIndex(thread, receiver, idx, false, JSTaggedValue::Undefined());