mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[NFC][PowerPC] Order the MTSTR/MFSPR InstAlias definetion by SPR
Summary: This NFC patch is only modify the position of MTSTR/MFSPR InstAlias definition. So it will be easy to read.
This commit is contained in:
parent
599dfc4b73
commit
3248651cb7
@ -4481,6 +4481,24 @@ def : InstAlias<"crclr $bx", (CRXOR crbitrc:$bx, crbitrc:$bx, crbitrc:$bx)>;
|
||||
def : InstAlias<"crmove $bx, $by", (CROR crbitrc:$bx, crbitrc:$by, crbitrc:$by)>;
|
||||
def : InstAlias<"crnot $bx, $by", (CRNOR crbitrc:$bx, crbitrc:$by, crbitrc:$by)>;
|
||||
|
||||
def : InstAlias<"mftb $Rx", (MFTB gprc:$Rx, 268)>;
|
||||
def : InstAlias<"mftbl $Rx", (MFTB gprc:$Rx, 268)>;
|
||||
def : InstAlias<"mftbu $Rx", (MFTB gprc:$Rx, 269)>;
|
||||
|
||||
def : InstAlias<"xnop", (XORI R0, R0, 0)>;
|
||||
|
||||
foreach BR = 0-7 in {
|
||||
def : InstAlias<"mfbr"#BR#" $Rx",
|
||||
(MFDCR gprc:$Rx, !add(BR, 0x80))>,
|
||||
Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mtbr"#BR#" $Rx",
|
||||
(MTDCR gprc:$Rx, !add(BR, 0x80))>,
|
||||
Requires<[IsPPC4xx]>;
|
||||
}
|
||||
|
||||
def : InstAlias<"mtmsrd $RS", (MTMSRD gprc:$RS, 0)>;
|
||||
def : InstAlias<"mtmsr $RS", (MTMSR gprc:$RS, 0)>;
|
||||
|
||||
def : InstAlias<"mtxer $Rx", (MTSPR 1, gprc:$Rx)>;
|
||||
def : InstAlias<"mfxer $Rx", (MFSPR gprc:$Rx, 1)>;
|
||||
|
||||
@ -4508,12 +4526,6 @@ def : InstAlias<"mfsrr0 $Rx", (MFSPR gprc:$Rx, 26)>;
|
||||
def : InstAlias<"mtsrr1 $Rx", (MTSPR 27, gprc:$Rx)>;
|
||||
def : InstAlias<"mfsrr1 $Rx", (MFSPR gprc:$Rx, 27)>;
|
||||
|
||||
def : InstAlias<"mtsrr2 $Rx", (MTSPR 990, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfsrr2 $Rx", (MFSPR gprc:$Rx, 990)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtsrr3 $Rx", (MTSPR 991, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfsrr3 $Rx", (MFSPR gprc:$Rx, 991)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtcfar $Rx", (MTSPR 28, gprc:$Rx)>;
|
||||
def : InstAlias<"mfcfar $Rx", (MFSPR gprc:$Rx, 28)>;
|
||||
|
||||
@ -4523,19 +4535,34 @@ def : InstAlias<"mfamr $Rx", (MFSPR gprc:$Rx, 29)>;
|
||||
def : InstAlias<"mtpid $Rx", (MTSPR 48, gprc:$Rx)>, Requires<[IsBookE]>;
|
||||
def : InstAlias<"mfpid $Rx", (MFSPR gprc:$Rx, 48)>, Requires<[IsBookE]>;
|
||||
|
||||
def : InstAlias<"mftb $Rx", (MFTB gprc:$Rx, 268)>;
|
||||
def : InstAlias<"mftbl $Rx", (MFTB gprc:$Rx, 268)>;
|
||||
def : InstAlias<"mftbu $Rx", (MFTB gprc:$Rx, 269)>;
|
||||
foreach SPRG = 4-7 in {
|
||||
def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 256))>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 256))>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
|
||||
Requires<[IsBookE]>;
|
||||
}
|
||||
|
||||
foreach SPRG = 0-3 in {
|
||||
def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 272))>;
|
||||
def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 272))>;
|
||||
def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
|
||||
def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
|
||||
}
|
||||
|
||||
def : InstAlias<"mfasr $RT", (MFSPR gprc:$RT, 280)>;
|
||||
def : InstAlias<"mtasr $RT", (MTSPR 280, gprc:$RT)>;
|
||||
|
||||
def : InstAlias<"mttbl $Rx", (MTSPR 284, gprc:$Rx)>;
|
||||
def : InstAlias<"mttbu $Rx", (MTSPR 285, gprc:$Rx)>;
|
||||
|
||||
def : InstAlias<"mftblo $Rx", (MFSPR gprc:$Rx, 989)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mttblo $Rx", (MTSPR 989, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mftbhi $Rx", (MFSPR gprc:$Rx, 988)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mttbhi $Rx", (MTSPR 988, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfpvr $RT", (MFSPR gprc:$RT, 287)>;
|
||||
|
||||
def : InstAlias<"xnop", (XORI R0, R0, 0)>;
|
||||
def : InstAlias<"mfspefscr $Rx", (MFSPR gprc:$Rx, 512)>;
|
||||
def : InstAlias<"mtspefscr $Rx", (MTSPR 512, gprc:$Rx)>;
|
||||
|
||||
foreach BATR = 0-3 in {
|
||||
def : InstAlias<"mtdbatu "#BATR#", $Rx",
|
||||
@ -4564,14 +4591,26 @@ foreach BATR = 0-3 in {
|
||||
Requires<[IsPPC6xx]>;
|
||||
}
|
||||
|
||||
foreach BR = 0-7 in {
|
||||
def : InstAlias<"mfbr"#BR#" $Rx",
|
||||
(MFDCR gprc:$Rx, !add(BR, 0x80))>,
|
||||
Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mtbr"#BR#" $Rx",
|
||||
(MTDCR gprc:$Rx, !add(BR, 0x80))>,
|
||||
Requires<[IsPPC4xx]>;
|
||||
}
|
||||
def : InstAlias<"mtesr $Rx", (MTSPR 980, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfesr $Rx", (MFSPR gprc:$Rx, 980)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtdear $Rx", (MTSPR 981, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfdear $Rx", (MFSPR gprc:$Rx, 981)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mttcr $Rx", (MTSPR 986, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mftcr $Rx", (MFSPR gprc:$Rx, 986)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mftbhi $Rx", (MFSPR gprc:$Rx, 988)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mttbhi $Rx", (MTSPR 988, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mftblo $Rx", (MFSPR gprc:$Rx, 989)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mttblo $Rx", (MTSPR 989, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtsrr2 $Rx", (MTSPR 990, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfsrr2 $Rx", (MFSPR gprc:$Rx, 990)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtsrr3 $Rx", (MTSPR 991, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfsrr3 $Rx", (MFSPR gprc:$Rx, 991)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtdccr $Rx", (MTSPR 1018, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfdccr $Rx", (MFSPR gprc:$Rx, 1018)>, Requires<[IsPPC4xx]>;
|
||||
@ -4579,59 +4618,11 @@ def : InstAlias<"mfdccr $Rx", (MFSPR gprc:$Rx, 1018)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mticcr $Rx", (MTSPR 1019, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mficcr $Rx", (MFSPR gprc:$Rx, 1019)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtdear $Rx", (MTSPR 981, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfdear $Rx", (MFSPR gprc:$Rx, 981)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mtesr $Rx", (MTSPR 980, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mfesr $Rx", (MFSPR gprc:$Rx, 980)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def : InstAlias<"mfspefscr $Rx", (MFSPR gprc:$Rx, 512)>;
|
||||
def : InstAlias<"mtspefscr $Rx", (MTSPR 512, gprc:$Rx)>;
|
||||
|
||||
def : InstAlias<"mttcr $Rx", (MTSPR 986, gprc:$Rx)>, Requires<[IsPPC4xx]>;
|
||||
def : InstAlias<"mftcr $Rx", (MFSPR gprc:$Rx, 986)>, Requires<[IsPPC4xx]>;
|
||||
|
||||
def LAx : PPCAsmPseudo<"la $rA, $addr", (ins gprc:$rA, memri:$addr)>;
|
||||
|
||||
def SUBI : PPCAsmPseudo<"subi $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIS : PPCAsmPseudo<"subis $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIC : PPCAsmPseudo<"subic $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIC_rec : PPCAsmPseudo<"subic. $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
|
||||
def : InstAlias<"mtmsrd $RS", (MTMSRD gprc:$RS, 0)>;
|
||||
def : InstAlias<"mtmsr $RS", (MTMSR gprc:$RS, 0)>;
|
||||
|
||||
def : InstAlias<"mfasr $RT", (MFSPR gprc:$RT, 280)>;
|
||||
def : InstAlias<"mtasr $RT", (MTSPR 280, gprc:$RT)>;
|
||||
|
||||
foreach SPRG = 0-3 in {
|
||||
def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 272))>;
|
||||
def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 272))>;
|
||||
def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
|
||||
def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 272), gprc:$RT)>;
|
||||
}
|
||||
foreach SPRG = 4-7 in {
|
||||
def : InstAlias<"mfsprg $RT, "#SPRG, (MFSPR gprc:$RT, !add(SPRG, 256))>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mfsprg"#SPRG#" $RT", (MFSPR gprc:$RT, !add(SPRG, 256))>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mtsprg "#SPRG#", $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
|
||||
Requires<[IsBookE]>;
|
||||
def : InstAlias<"mtsprg"#SPRG#" $RT", (MTSPR !add(SPRG, 256), gprc:$RT)>,
|
||||
Requires<[IsBookE]>;
|
||||
}
|
||||
|
||||
def : InstAlias<"mtasr $RS", (MTSPR 280, gprc:$RS)>;
|
||||
|
||||
def : InstAlias<"mfdec $RT", (MFSPR gprc:$RT, 22)>;
|
||||
def : InstAlias<"mtdec $RT", (MTSPR 22, gprc:$RT)>;
|
||||
|
||||
def : InstAlias<"mfpvr $RT", (MFSPR gprc:$RT, 287)>;
|
||||
|
||||
def : InstAlias<"mfsdr1 $RT", (MFSPR gprc:$RT, 25)>;
|
||||
def : InstAlias<"mtsdr1 $RT", (MTSPR 25, gprc:$RT)>;
|
||||
|
||||
@ -4640,6 +4631,7 @@ def : InstAlias<"mfsrr1 $RT", (MFSPR gprc:$RT, 27)>;
|
||||
def : InstAlias<"mtsrr0 $RT", (MTSPR 26, gprc:$RT)>;
|
||||
def : InstAlias<"mtsrr1 $RT", (MTSPR 27, gprc:$RT)>;
|
||||
|
||||
|
||||
def : InstAlias<"tlbie $RB", (TLBIE R0, gprc:$RB)>;
|
||||
|
||||
def : InstAlias<"tlbrehi $RS, $A", (TLBRE2 gprc:$RS, gprc:$A, 0)>,
|
||||
@ -4651,6 +4643,17 @@ def : InstAlias<"tlbwehi $RS, $A", (TLBWE2 gprc:$RS, gprc:$A, 0)>,
|
||||
def : InstAlias<"tlbwelo $RS, $A", (TLBWE2 gprc:$RS, gprc:$A, 1)>,
|
||||
Requires<[IsPPC4xx]>;
|
||||
|
||||
def LAx : PPCAsmPseudo<"la $rA, $addr", (ins gprc:$rA, memri:$addr)>;
|
||||
|
||||
def SUBI : PPCAsmPseudo<"subi $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIS : PPCAsmPseudo<"subis $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIC : PPCAsmPseudo<"subic $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
def SUBIC_rec : PPCAsmPseudo<"subic. $rA, $rB, $imm",
|
||||
(ins gprc:$rA, gprc:$rB, s16imm:$imm)>;
|
||||
|
||||
def EXTLWI : PPCAsmPseudo<"extlwi $rA, $rS, $n, $b",
|
||||
(ins gprc:$rA, gprc:$rS, u5imm:$n, u5imm:$b)>;
|
||||
def EXTLWI_rec : PPCAsmPseudo<"extlwi. $rA, $rS, $n, $b",
|
||||
|
Loading…
Reference in New Issue
Block a user