Lines Matching full:bytecodes
146 auto opCode = Bytecodes::GetOpcode(bytecodeArray); in Compile()
147 … LOG_INST() << "processing opCode: " << GetEcmaOpcodeStr(Bytecodes::GetOpcode(bytecodeArray)); in Compile()
208 auto opCode = Bytecodes::GetOpcode(start); in GetJumpToOffsets()
213 int8_t jumpOffset = *(start + 1); // 1: get one byte in bytecodes in GetJumpToOffsets()
221 … int16_t jumpOffset = *(start + 2); // 2: get two bytes in bytecodes in GetJumpToOffsets()
223 … tmpValue += static_cast<uint8_t>(*(start + 1)); // 1: get one byte in bytecodes in GetJumpToOffsets()
231 int32_t jumpOffset = *(start + 4); // 4: get four bytes in bytecodes in GetJumpToOffsets()
233 … tmpValue += static_cast<uint8_t>(*(start + 3)); // 3: get three bytes in bytecodes in GetJumpToOffsets()
235 … tmpValue += static_cast<uint8_t>(*(start + 2)); // 2: get two bytes in bytecodes in GetJumpToOffsets()
237 … tmpValue += static_cast<uint8_t>(*(start + 1)); // 1: get one byte in bytecodes in GetJumpToOffsets()
251 // ------- parse bytecodes about reading special variables -------
474 // ------- End parse bytecodes about reading special variables -------
476 // ------- parse bytecodes about reading and storing general variables -------
2060 // ------- End parse bytecodes about reading and storing general variables -------
2062 // ------- parse bytecodes about functions -------
2777 // ------- End parse bytecodes about functions -------
2779 // ------- parse bytecodes about arithmetic -------
3118 // ------- End parse bytecodes about arithmetic -------
3120 // ------- parse bytecodes about comparison and check -------
3385 // ------- End parse bytecodes about comparison -------
3387 // ------- parse bytecodes about control flow -------
3645 // ------- End parse bytecodes about control flow -------
3647 // ------- parse other bytecodes -------
3731 // ------- parse wide bytecodes -------
4123 // ------- End parse wide bytecodes -------
4125 // ------- parse throw bytecodes -------
4286 // ------- End parse throw bytecodes -------
4288 // ------- parse SET/GET bytecodes -------
4393 // ------- End parse SET/GET bytecodes -------
4395 // ------- parse JUMP bytecodes -------
4512 // ------- End parse JUMP bytecodes -------
4514 // ------- parse deprecated bytecodes -------