mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Bye bye HACKTROCITY.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24935 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
351dc967ba
commit
5bc4da4893
@ -132,14 +132,6 @@ def CTR : SPR<9, "ctr">;
|
||||
// VRsave register
|
||||
def VRSAVE: SPR<256, "VRsave">;
|
||||
|
||||
// FIXME:
|
||||
// HACKTROCITY: define a flags reg class for things that need to take a flag.
|
||||
// this should really be handled by tablgen.
|
||||
def FLAG: SPR<1023, "Flag">;
|
||||
def FLAGRC : RegisterClass<"PPC", [FlagVT], 32, [FLAG]> {
|
||||
let Size = 32;
|
||||
}
|
||||
|
||||
/// Register classes
|
||||
// Allocate volatiles first
|
||||
// then nonvolatiles in reverse order since stmw/lmw save from rN to r31
|
||||
|
@ -38,7 +38,7 @@ def SDTX86RetFlag : SDTypeProfile<0, 2, [SDTCisVT<0, i16>,
|
||||
def SDTX86Fld : SDTypeProfile<1, 2, [SDTCisFP<0>,
|
||||
SDTCisPtrTy<1>, SDTCisVT<2, OtherVT>]>;
|
||||
|
||||
def SDTX86FpSet : SDTypeProfile<0, 1, [SDTCisFP<0>]>;
|
||||
def SDTX86FpSet : SDTypeProfile<1, 1, [SDTCisVT<0, FlagVT>, SDTCisFP<1>]>;
|
||||
|
||||
def X86cmp : SDNode<"X86ISD::CMP" , SDTX86CmpTest, []>;
|
||||
def X86test : SDNode<"X86ISD::TEST", SDTX86CmpTest, []>;
|
||||
@ -2257,7 +2257,8 @@ class FpI<dag ops, FPFormat fp, list<dag> pattern>
|
||||
def FpGETRESULT : FpI<(ops RFP:$dst), SpecialFP, // FPR = ST(0)
|
||||
[]>;
|
||||
def FpSETRESULT : FpI<(ops RFP:$src), SpecialFP,
|
||||
[(X86fpset RFP:$src)]>, Imp<[], [ST0]>; // ST(0) = FPR
|
||||
[(set FLAG, (X86fpset RFP:$src))]>,
|
||||
Imp<[], [ST0]>; // ST(0) = FPR
|
||||
def FpMOV : FpI<(ops RFP:$dst, RFP:$src), SpecialFP,
|
||||
[]>; // f1 = fmov f2
|
||||
|
||||
|
@ -142,11 +142,6 @@ def RST : RegisterClass<"X86", [f64], 32,
|
||||
}];
|
||||
}
|
||||
|
||||
// FIXME:
|
||||
// HACKTROCITY: define a flags reg class for things that need to take a flag.
|
||||
// this should really be handled by tablgen.
|
||||
let Namespace = "X86" in
|
||||
def FLAG : Register<"FLAG">;
|
||||
def FLAGS_REGS : RegisterClass<"X86", [FlagVT], 32, [STATUS, FLAG]> {
|
||||
def FLAGS_REGS : RegisterClass<"X86", [FlagVT], 32, [STATUS]> {
|
||||
let Size = 32;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user