Lines Matching refs:OP
48 #define IMPLEMENT_BINARY_OPERATOR(OP, TY) \
50 Dest.TY##Val = Src1.TY##Val OP Src2.TY##Val; \
112 #define IMPLEMENT_INTEGER_ICMP(OP, TY) \
114 Dest.IntVal = APInt(1,Src1.IntVal.OP(Src2.IntVal)); \
121 #define IMPLEMENT_POINTER_ICMP(OP) \
123 Dest.IntVal = APInt(1,(void*)(intptr_t)Src1.PointerVal OP \
283 #define IMPLEMENT_FCMP(OP, TY) \
285 Dest.IntVal = APInt(1,Src1.TY##Val OP Src2.TY##Val); \