Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:NewSense

97   struct NewSense {
101 static NewSense Jmp(bool isNVJ) {
102 NewSense NS = { /*PredReg=*/ 0, /*IsFloat=*/ false, /*IsNVJ=*/ isNVJ,
106 static NewSense Use(unsigned PR, bool True) {
107 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ false, /*IsNVJ=*/ false,
111 static NewSense Def(unsigned PR, bool True, bool Float) {
112 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ Float, /*IsNVJ=*/ false,
118 typedef llvm::SmallVector<NewSense,2> NewSenseList;
147 typedef llvm::DenseMap<unsigned, NewSense>::iterator NewUsesIterator;
148 llvm::DenseMap<unsigned, NewSense> NewUses;
192 bool hasValidNewValueDef(const NewSense &Use,