Lines Matching refs:UseInfo
36 class UseInfo {
38 UseInfo(uint8_t tag) : tag_(tag) {}
45 bool AddUse(const UseInfo &UseInfo)
48 tag_ |= UseInfo.tag_;
67 static UseInfo UnUsed()
69 return UseInfo(UNUSED);
71 static UseInfo BoolUse()
73 return UseInfo(BOOL);
75 static UseInfo Int32Use()
77 return UseInfo(INT32);
79 static UseInfo Float64Use()
81 return UseInfo(FLOAT64);
83 static UseInfo TaggedUse()
85 return UseInfo(TAGGED);