This will allow targets to lower their 'copy' instructions easily.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| llvm/include/llvm/CodeGen/TargetInstrInfo.h | ||
|---|---|---|
| 1154 | Fix the comment "machine IR" -> "target specific instruction" | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 723 | Don't need TII, that's just this | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 745 | You don’t need the explicit this | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 745 | Just this one or 'get()' above too? | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 745 | Everywhere | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 702 | Might as well change this to start with lowercase while you're here | |
| llvm/include/llvm/CodeGen/TargetInstrInfo.h | ||
|---|---|---|
| 1154 | Can't it be lowered into several instructions? The comment near copyPhysReg suggests that it can. | |
| llvm/include/llvm/CodeGen/TargetInstrInfo.h | ||
|---|---|---|
| 1154 | Yes, most copies are expanded to multiple instructions for amdgpu | |
Fix the comment "machine IR" -> "target specific instruction"