Home
last modified time | relevance | path

Searched refs:IntPart (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFixedPoint.cpp379 APSInt IntPart = Val >> Scale; in toString() local
387 IntPart.toString(Str, /*Radix=*/10); in toString()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1078 struct IntPart { struct
1085 static Optional<IntPart> matchIntPart(Value *V) { in matchIntPart() argument
1103 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()