Home
last modified time | relevance | path

Searched refs:currentInst (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/interpreter/
H A Dinterpreter-inl.h576 #define MOVE_AND_READ_INST_8(currentInst, offset) \
577 currentInst <<= 8; \
578 currentInst += READ_INST_8(offset); \
590 uint16_t currentInst = READ_INST_8(offset); \
591 MOVE_AND_READ_INST_8(currentInst, offset - 1) \
599 uint32_t currentInst = READ_INST_8(offset); \
600 MOVE_AND_READ_INST_8(currentInst, offset - 1) \
601 MOVE_AND_READ_INST_8(currentInst, offset - 2) \
602 MOVE_AND_READ_INST_8(currentInst, offset - 3) \
607 uint64_t currentInst
[all...]
H A Dinterpreter-inl.cpp563 #define MOVE_AND_READ_INST_8(currentInst, offset) \
564 (currentInst) <<= 8; \
565 (currentInst) += READ_INST_8(offset); \
577 uint16_t currentInst = READ_INST_8(offset); \
578 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
586 uint32_t currentInst = READ_INST_8(offset); \
587 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
588 MOVE_AND_READ_INST_8(currentInst, (offset) - 2) \
589 MOVE_AND_READ_INST_8(currentInst, (offset) - 3) \
594 uint64_t currentInst
[all...]
H A Dinterpreter_assembly.cpp138 #define MOVE_AND_READ_INST_8(currentInst, offset) \
139 (currentInst) <<= 8; \
140 (currentInst) += READ_INST_8(offset); \
150 uint16_t currentInst = READ_INST_8(offset); \
151 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
159 uint32_t currentInst = READ_INST_8(offset); \
160 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
161 MOVE_AND_READ_INST_8(currentInst, (offset) - 2) \
162 MOVE_AND_READ_INST_8(currentInst, (offset) - 3) \
167 uint64_t currentInst
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dinterpreter_stub-inl.h124 GateRef currentInst = Load(VariableType::INT16(), pc, IntPtr(1)); // 1 : skip 1 byte of bytecode in ReadInstSigned16_0() local
125 return GetEnvironment()->GetBuilder()->SExtInt16ToInt32(currentInst); in ReadInstSigned16_0()
128 GateRef currentInst = Load(VariableType::INT8(), pc, IntPtr(2)); in ReadInstSigned16_0() local
129 GateRef currentInst1 = GetEnvironment()->GetBuilder()->SExtInt1ToInt32(currentInst); in ReadInstSigned16_0()
142 GateRef currentInst = GetEnvironment()->GetBuilder()->SExtInt1ToInt32(x); in ReadInstSigned32_0() local
143 GateRef currentInst1 = Int32LSL(currentInst, Int32(8)); // 8 : set as high 8 bits in ReadInstSigned32_0()
610 GateRef currentInst = ZExtInt8ToInt32(ReadInst8_3(pc)); in ReadInst32_0() local
611 GateRef currentInst1 = Int32LSL(currentInst, Int32(8)); // 8 : set as high 8 bits in ReadInst32_0()
624 GateRef currentInst = ZExtInt8ToInt32(ReadInst8_4(pc)); in ReadInst32_1() local
625 GateRef currentInst1 = Int32LSL(currentInst, Int3 in ReadInst32_1()
638 GateRef currentInst = ZExtInt8ToInt32(ReadInst8_5(pc)); ReadInst32_2() local
652 GateRef currentInst = ZExtInt8ToInt64(ReadInst8_7(pc)); ReadInst64_0() local
[all...]
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
H A Dbaseline_compiler.cpp54 #define MOVE_AND_READ_INST_8(currentInst, offset) \
55 (currentInst) <<= 8; \
56 (currentInst) += READ_INST_8(offset); \
68 uint16_t currentInst = READ_INST_8(offset); \
69 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
77 uint32_t currentInst = READ_INST_8(offset); \
78 MOVE_AND_READ_INST_8(currentInst, (offset) - 1) \
79 MOVE_AND_READ_INST_8(currentInst, (offset) - 2) \
80 MOVE_AND_READ_INST_8(currentInst, (offset) - 3) \
85 uint64_t currentInst
[all...]

Completed in 18 milliseconds