Searched refs:jump_location (Results 1 – 2 of 2) sorted by relevance
242 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand() argument244 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith8BitOperand()246 size_t operand_location = jump_location + 1; in PatchJumpWith8BitOperand()263 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith8BitOperand()268 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand() argument270 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith16BitOperand()272 size_t operand_location = jump_location + 1; in PatchJumpWith16BitOperand()279 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith16BitOperand()290 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand() argument293 Bytecodes::FromByte(bytecodes()->at(jump_location)))); in PatchJumpWith32BitOperand()[all …]
46 void PatchJump(size_t jump_target, size_t jump_location);47 void PatchJumpWith8BitOperand(size_t jump_location, int delta);48 void PatchJumpWith16BitOperand(size_t jump_location, int delta);49 void PatchJumpWith32BitOperand(size_t jump_location, int delta);