diff options
author | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-10 21:49:38 +0000 |
---|---|---|
committer | Vikram S. Adve <vadve@cs.uiuc.edu> | 2002-07-10 21:49:38 +0000 |
commit | e69436625942eb9ed9ff8496754c9c2a8bf37786 (patch) | |
tree | 937bbdd560f4afbd2777350dfcfaa7771f48bac0 | |
parent | cd13e7a5ee81dd4de7fc6d98f65b256a5eb3f994 (diff) |
Added a few more methods for creating instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2862 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/CodeGen/InstrSelectionSupport.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/InstrSelectionSupport.h b/include/llvm/CodeGen/InstrSelectionSupport.h index bb88200172..adfad6bd36 100644 --- a/include/llvm/CodeGen/InstrSelectionSupport.h +++ b/include/llvm/CodeGen/InstrSelectionSupport.h @@ -115,6 +115,18 @@ Create2OperandInstr(MachineOpCode opCode, Value* argVal1, Value* argVal2) } inline MachineInstr* +Create2OperandInstr(MachineOpCode opCode, + Value* argVal1, MachineOperand::MachineOperandType type1, + Value* argVal2, MachineOperand::MachineOperandType type2) +{ + MachineInstr* M = new MachineInstr(opCode); + M->SetMachineOperandVal(0, type1, argVal1); + M->SetMachineOperandVal(1, type2, argVal2); + return M; +} + + +inline MachineInstr* Create2OperandInstr_UImmed(MachineOpCode opCode, unsigned int unextendedImmed, Value* argVal2) { @@ -137,6 +149,16 @@ Create2OperandInstr_SImmed(MachineOpCode opCode, } inline MachineInstr* +Create2OperandInstr_Addr(MachineOpCode opCode, + Value* label, Value* argVal2) +{ + MachineInstr* M = new MachineInstr(opCode); + M->SetMachineOperandVal(0, MachineOperand::MO_PCRelativeDisp, label); + M->SetMachineOperandVal(1, MachineOperand::MO_VirtualRegister, argVal2); + return M; +} + +inline MachineInstr* Create2OperandInstr_Reg(MachineOpCode opCode, Value* argVal1, unsigned int regNum) { @@ -205,6 +227,17 @@ Create3OperandInstr_SImmed(MachineOpCode opCode, Value* argVal1, } inline MachineInstr* +Create3OperandInstr_Addr(MachineOpCode opCode, Value* argVal1, + Value* label, Value* argVal3) +{ + MachineInstr* M = new MachineInstr(opCode); + M->SetMachineOperandVal(0, MachineOperand::MO_VirtualRegister, argVal1); + M->SetMachineOperandVal(1, MachineOperand::MO_PCRelativeDisp, label); + M->SetMachineOperandVal(2, MachineOperand::MO_VirtualRegister, argVal3); + return M; +} + +inline MachineInstr* Create3OperandInstr_Reg(MachineOpCode opCode, Value* argVal1, unsigned int regNum, Value* argVal3) { |