diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-22 05:50:40 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-10-22 05:50:40 +0000 |
| commit | dbe73c5d6d99f33ade487640efa1f7c5c4aed7fa (patch) | |
| tree | 6efe849f5fbc891980bd085cc4450525539b8642 /llvm | |
| parent | 8c0608cf0dc65ce5af050c05d8eca15202b4eaee (diff) | |
| download | bcm5719-llvm-dbe73c5d6d99f33ade487640efa1f7c5c4aed7fa.tar.gz bcm5719-llvm-dbe73c5d6d99f33ade487640efa1f7c5c4aed7fa.zip | |
Add comments to describe what these functions actually do.
llvm-svn: 9370
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/Sparc/SparcInstrSelectionSupport.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Target/Sparc/SparcInstrSelectionSupport.h b/llvm/lib/Target/Sparc/SparcInstrSelectionSupport.h index 7a3c081d159..d49863c1c84 100644 --- a/llvm/lib/Target/Sparc/SparcInstrSelectionSupport.h +++ b/llvm/lib/Target/Sparc/SparcInstrSelectionSupport.h @@ -17,6 +17,7 @@ #include "llvm/DerivedTypes.h" #include "SparcInternals.h" +// Choose load instruction opcode based on type of value inline MachineOpCode ChooseLoadInstruction(const Type *DestTy) { @@ -39,6 +40,7 @@ ChooseLoadInstruction(const Type *DestTy) return 0; } +// Choose store instruction opcode based on type of value inline MachineOpCode ChooseStoreInstruction(const Type *DestTy) { @@ -86,6 +88,11 @@ ChooseAddInstructionByType(const Type* resultType) } +// Because the Sparc instruction selector likes to re-write operands to +// instructions, making them change from a Value* (virtual register) to a +// Constant* (making an immediate field), we need to change the opcode from a +// register-based instruction to an immediate-based instruction, hence this +// mapping. static unsigned convertOpcodeFromRegToImm(unsigned Opcode) { switch (Opcode) { |

