mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Add undef
llvm-svn: 23990
This commit is contained in:
parent
4ab26b20b7
commit
d006618062
@ -68,7 +68,8 @@ class SDTypeProfile<int numresults, int numoperands,
|
||||
|
||||
// Builtin profiles.
|
||||
def SDTImm : SDTypeProfile<1, 0, [SDTCisInt<0>]>; // for 'imm'.
|
||||
def SDTVT : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'
|
||||
def SDTVT : SDTypeProfile<1, 0, [SDTCisVT<0, OtherVT>]>; // for 'vt'.
|
||||
def SDTUNDEF : SDTypeProfile<1, 0, []>; // for 'undef'.
|
||||
def SDTIntBinOp : SDTypeProfile<1, 2, [ // add, and, or, xor, udiv, etc.
|
||||
SDTCisSameAs<0, 1>, SDTCisSameAs<0, 2>, SDTCisInt<0>
|
||||
]>;
|
||||
@ -123,6 +124,7 @@ def node;
|
||||
|
||||
def imm : SDNode<"ISD::Constant" , SDTImm , [], "ConstantSDNode">;
|
||||
def vt : SDNode<"ISD::VALUETYPE" , SDTVT , [], "VTSDNode">;
|
||||
def undef : SDNode<"ISD::UNDEF" , SDTUNDEF , []>;
|
||||
def add : SDNode<"ISD::ADD" , SDTIntBinOp ,
|
||||
[SDNPCommutative, SDNPAssociative]>;
|
||||
def sub : SDNode<"ISD::SUB" , SDTIntBinOp>;
|
||||
|
Loading…
Reference in New Issue
Block a user