Lines Matching refs:jump_bytecode
757 Bytecode jump_bytecode) {
758 switch (jump_bytecode) {
782 Bytecode jump_bytecode) {
783 switch (jump_bytecode) {
806 Bytecode BytecodeArrayBuilder::GetJumpWithToBoolean(Bytecode jump_bytecode) {
807 switch (jump_bytecode) {
811 return jump_bytecode;
825 Bytecode jump_bytecode = Bytecodes::FromByte(*jump_location);
826 DCHECK(Bytecodes::IsJumpImmediate(jump_bytecode));
841 jump_bytecode = GetJumpWithConstantOperand(jump_bytecode);
842 *jump_location = Bytecodes::ToByte(jump_bytecode);
866 Bytecode jump_bytecode = Bytecodes::FromByte(*jump_location);
868 DCHECK(Bytecodes::IsJump(jump_bytecode));
869 switch (Bytecodes::GetOperandSize(jump_bytecode, 0)) {
883 BytecodeArrayBuilder& BytecodeArrayBuilder::OutputJump(Bytecode jump_bytecode,
891 jump_bytecode = GetJumpWithToBoolean(jump_bytecode);
902 Output(jump_bytecode, static_cast<uint8_t>(delta));
907 Output(GetJumpWithConstantOperand(jump_bytecode),
910 Output(GetJumpWithConstantWideOperand(jump_bytecode),
929 Output(jump_bytecode, 0);
932 Output(GetJumpWithConstantWideOperand(jump_bytecode), 0);