• Home
  • Raw
  • Download

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 -------
476 // ------- End parse bytecodes about reading special variables -------
478 // ------- parse bytecodes about reading and storing general variables -------
2075 // ------- End parse bytecodes about reading and storing general variables -------
2077 // ------- parse bytecodes about functions -------
2811 // ------- End parse bytecodes about functions -------
2813 // ------- parse bytecodes about arithmetic -------
3152 // ------- End parse bytecodes about arithmetic -------
3154 // ------- parse bytecodes about comparison and check -------
3421 // ------- End parse bytecodes about comparison -------
3423 // ------- parse bytecodes about control flow -------
3681 // ------- End parse bytecodes about control flow -------
3683 // ------- parse other bytecodes -------
3767 // ------- parse wide bytecodes -------
4160 // ------- End parse wide bytecodes -------
4162 // ------- parse throw bytecodes -------
4323 // ------- End parse throw bytecodes -------
4325 // ------- parse SET/GET bytecodes -------
4430 // ------- End parse SET/GET bytecodes -------
4432 // ------- parse JUMP bytecodes -------
4549 // ------- End parse JUMP bytecodes -------
4551 // ------- parse deprecated bytecodes -------