mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-30 00:24:00 +00:00
Add a class for pseudo-instructions. Use it.
Add IMPLICIT_USE and IMPLICIT_DEF, a la X86. llvm-svn: 14884
This commit is contained in:
parent
ec53196516
commit
b2af4f47b6
@ -36,15 +36,14 @@ include "SparcV8InstrInfo_F3.td"
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// Pseudo instructions.
|
||||
def PHI : InstV8 {
|
||||
let Name = "PHI";
|
||||
}
|
||||
def ADJCALLSTACKDOWN : InstV8 {
|
||||
let Name = "ADJCALLSTACKDOWN";
|
||||
}
|
||||
def ADJCALLSTACKUP : InstV8 {
|
||||
let Name = "ADJCALLSTACKUP";
|
||||
class PseudoInstV8<string nm> : InstV8 {
|
||||
let Name = nm;
|
||||
}
|
||||
def PHI : PseudoInstV8<"PHI">;
|
||||
def ADJCALLSTACKDOWN : PseudoInstV8<"ADJCALLSTACKDOWN">;
|
||||
def ADJCALLSTACKUP : PseudoInstV8<"ADJCALLSTACKUP">;
|
||||
def IMPLICIT_USE : PseudoInstV8<"IMPLICIT_USE">;
|
||||
def IMPLICIT_DEF : PseudoInstV8<"IMPLICIT_DEF">;
|
||||
|
||||
// Section A.3 - Synthetic Instructions, p. 85
|
||||
// special cases of JMPL:
|
||||
|
Loading…
x
Reference in New Issue
Block a user