Searched refs:jump_location (Results 1 – 2 of 2) sorted by relevance
266 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand() argument268 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith8BitOperand()273 size_t operand_location = jump_location + 1; in PatchJumpWith8BitOperand()289 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith8BitOperand()294 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand() argument296 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith16BitOperand()301 size_t operand_location = jump_location + 1; in PatchJumpWith16BitOperand()316 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith16BitOperand()326 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand() argument329 Bytecodes::FromByte(bytecodes()->at(jump_location)))); in PatchJumpWith32BitOperand()[all …]
65 void PatchJump(size_t jump_target, size_t jump_location);66 void PatchJumpWith8BitOperand(size_t jump_location, int delta);67 void PatchJumpWith16BitOperand(size_t jump_location, int delta);68 void PatchJumpWith32BitOperand(size_t jump_location, int delta);