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 | ||
|---|---|---|
| 1164 | Fix the comment "machine IR" -> "target specific instruction" | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 724 | Don't need TII, that's just this | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 746 | You don’t need the explicit this | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 746 | Just this one or 'get()' above too? | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 746 | Everywhere | |
| llvm/lib/CodeGen/TargetInstrInfo.cpp | ||
|---|---|---|
| 703 | Might as well change this to start with lowercase while you're here | |
| llvm/include/llvm/CodeGen/TargetInstrInfo.h | ||
|---|---|---|
| 1164 | Can't it be lowered into several instructions? The comment near copyPhysReg suggests that it can. | |
| llvm/include/llvm/CodeGen/TargetInstrInfo.h | ||
|---|---|---|
| 1164 | Yes, most copies are expanded to multiple instructions for amdgpu | |
Fix the comment "machine IR" -> "target specific instruction"