Searched refs:IntPart (Results 1 – 2 of 2) sorted by relevance
379 APSInt IntPart = Val >> Scale; in toString() local387 IntPart.toString(Str, /*Radix=*/10); in toString()
1078 struct IntPart { struct1085 static Optional<IntPart> matchIntPart(Value *V) { in matchIntPart() argument1103 static Value *extractIntPart(const IntPart &P, IRBuilderBase &Builder) { in extractIntPart()1125 Optional<IntPart> L0 = matchIntPart(Cmp0->getOperand(0)); in foldEqOfParts()1126 Optional<IntPart> R0 = matchIntPart(Cmp0->getOperand(1)); in foldEqOfParts()1127 Optional<IntPart> L1 = matchIntPart(Cmp1->getOperand(0)); in foldEqOfParts()1128 Optional<IntPart> R1 = matchIntPart(Cmp1->getOperand(1)); in foldEqOfParts()1152 IntPart L = {L0->From, L0->StartBit, L0->NumBits + L1->NumBits}; in foldEqOfParts()1153 IntPart R = {R0->From, R0->StartBit, R0->NumBits + R1->NumBits}; in foldEqOfParts()