Lines Matching refs:jump_bytecode
321 Bytecode GetJumpWithConstantOperand(Bytecode jump_bytecode) { in GetJumpWithConstantOperand() argument
322 switch (jump_bytecode) { in GetJumpWithConstantOperand()
352 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith8BitOperand() local
353 DCHECK(Bytecodes::IsForwardJump(jump_bytecode)); in PatchJumpWith8BitOperand()
354 DCHECK(Bytecodes::IsJumpImmediate(jump_bytecode)); in PatchJumpWith8BitOperand()
355 DCHECK_EQ(Bytecodes::GetOperandType(jump_bytecode, 0), OperandType::kUImm); in PatchJumpWith8BitOperand()
372 jump_bytecode = GetJumpWithConstantOperand(jump_bytecode); in PatchJumpWith8BitOperand()
373 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith8BitOperand()
380 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJumpWith16BitOperand() local
381 DCHECK(Bytecodes::IsForwardJump(jump_bytecode)); in PatchJumpWith16BitOperand()
382 DCHECK(Bytecodes::IsJumpImmediate(jump_bytecode)); in PatchJumpWith16BitOperand()
383 DCHECK_EQ(Bytecodes::GetOperandType(jump_bytecode, 0), OperandType::kUImm); in PatchJumpWith16BitOperand()
399 jump_bytecode = GetJumpWithConstantOperand(jump_bytecode); in PatchJumpWith16BitOperand()
400 bytecodes()->at(jump_location) = Bytecodes::ToByte(jump_bytecode); in PatchJumpWith16BitOperand()
430 Bytecode jump_bytecode = Bytecodes::FromByte(bytecodes()->at(jump_location)); in PatchJump() local
434 if (Bytecodes::IsPrefixScalingBytecode(jump_bytecode)) { in PatchJump()
439 operand_scale = Bytecodes::PrefixBytecodeToOperandScale(jump_bytecode); in PatchJump()
440 jump_bytecode = in PatchJump()
444 DCHECK(Bytecodes::IsJump(jump_bytecode)); in PatchJump()