Home
last modified time | relevance | path

Searched refs:jump_location (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-array-writer.cc175 void BytecodeArrayWriter::PatchJumpWith8BitOperand(size_t jump_location, in PatchJumpWith8BitOperand() argument
177 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith8BitOperand()
182 size_t operand_location = jump_location + 1; in PatchJumpWith8BitOperand()
198 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith8BitOperand()
203 void BytecodeArrayWriter::PatchJumpWith16BitOperand(size_t jump_location, in PatchJumpWith16BitOperand() argument
205 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith16BitOperand()
210 size_t operand_location = jump_location + 1; in PatchJumpWith16BitOperand()
224 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith16BitOperand()
233 void BytecodeArrayWriter::PatchJumpWith32BitOperand(size_t jump_location, in PatchJumpWith32BitOperand() argument
236 Bytecodes::FromByte(bytecodes()->at(jump_location)))); in PatchJumpWith32BitOperand()
[all …]
Dbytecode-array-writer.h59 void PatchJump(size_t jump_target, size_t jump_location); in NON_EXPORTED_BASE()
60 void PatchJumpWith8BitOperand(size_t jump_location, int delta); in NON_EXPORTED_BASE()
61 void PatchJumpWith16BitOperand(size_t jump_location, int delta); in NON_EXPORTED_BASE()
62 void PatchJumpWith32BitOperand(size_t jump_location, int delta); in NON_EXPORTED_BASE()