Searched refs:Lower (Results 1 - 20 of 20) sorted by relevance

/external/llvm/lib/Support/
H A DConstantRange.cpp34 Lower = Upper = APInt::getMaxValue(BitWidth);
36 Lower = Upper = APInt::getMinValue(BitWidth);
41 ConstantRange::ConstantRange(const APInt &V) : Lower(V), Upper(V + 1) {}
44 Lower(L), Upper(U) {
48 "Lower == Upper, but they aren't min or max value!");
119 return Lower == Upper && Lower.isMaxValue();
125 return Lower == Upper && Lower.isMinValue();
132 return Lower
[all...]
/external/llvm/include/llvm/Support/
H A DConstantRange.h43 APInt Lower, Upper; member in class:llvm::ConstantRange
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
71 const APInt &getLower() const { return Lower; }
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
112 if (Upper == Lower + 1)
113 return &Lower;
148 return Lower == CR.Lower
[all...]
/external/icu4c/data/brkitr/
H A Dsent.txt22 $Lower = [\p{Sentence_Break = Lower}];
37 $LowerEx = $Lower ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
71 $ATermEx $CloseEx* $SpEx* $NotLettersEx* $Lower;
H A Dsent_el.txt22 $Lower = [\p{Sentence_Break = Lower}];
37 $LowerEx = $Lower ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
71 $ATermEx $CloseEx* $SpEx* $NotLettersEx* $Lower;
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp108 const llvm::APSInt &Lower,
122 if (i->To() < Lower) {
129 if (i->Includes(Lower)) {
131 newRanges = F.add(newRanges, Range(BV.getValue(Lower),
135 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
148 // the closed range [Lower, Upper]. Unlike the Range type, this range uses
150 // overflow. Thus, if the Lower bound is greater than the Upper bound, the
152 // intersection with the two ranges [Min, Upper] and [Lower, Max],
153 // or, alternatively, /removing/ all integers between Upper and Lower.
155 const llvm::APSInt &Lower,
107 IntersectInRange(BasicValueFactory &BV, Factory &F, const llvm::APSInt &Lower, const llvm::APSInt &Upper, PrimRangeSet &newRanges, PrimRangeSet::iterator &i, PrimRangeSet::iterator &e) const argument
154 Intersect(BasicValueFactory &BV, Factory &F, const llvm::APSInt &Lower, const llvm::APSInt &Upper) const argument
314 llvm::APSInt Lower = Int-Adjustment; local
393 llvm::APSInt Lower = Int-Adjustment; local
415 llvm::APSInt Lower = Min-Adjustment; local
[all...]
/external/llvm/lib/Target/MBlaze/
H A DMBlazeMCInstLower.h1 //===-- MBlazeMCInstLower.h - Lower MachineInstr to MCInst ------*- C++ -*-===//
36 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
H A DMBlazeMCInstLower.cpp115 void MBlazeMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MBlazeMCInstLower
H A DMBlazeAsmPrinter.cpp193 MCInstLowering.Lower(MI, TmpInst);
/external/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.h1 //===-- MSP430MCInstLower.h - Lower MachineInstr to MCInst ------*- C++ -*-===//
36 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
H A DMSP430AsmPrinter.cpp160 MCInstLowering.Lower(MI, TmpInst);
H A DMSP430MCInstLower.cpp109 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MSP430MCInstLower
/external/llvm/lib/Target/Mips/
H A DMipsMCInstLower.h1 //===-- MipsMCInstLower.h - Lower MachineInstr to MCInst -------*- C++ -*--===//
35 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
H A DMipsAsmPrinter.cpp49 MCInstLowering.Lower(MI, TmpInst);
150 MCInstLowering.Lower(MI, TmpInst0);
H A DMipsMCInstLower.cpp120 // Lower ".cpload $reg" to
143 // Lower ".cprestore offset" to "sw $gp, offset($sp)".
196 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MipsMCInstLower
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.h1 //===-- X86MCInstLower.h - Lower MachineInstr to MCInst ---------*- C++ -*-===//
41 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
H A DX86MCInstLower.cpp42 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
303 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:X86MCInstLower
413 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
634 // Lower these as normal, but add some comments.
643 // Lower these as normal, but add some comments.
679 // Lower the MO_GOT_ABSOLUTE_ADDRESS form of ADD32ri.
715 MCInstLowering.Lower(MI, TmpInst);
H A DX86ISelLowering.cpp586 // Lower this to FGETSIGNx86 plus an AND.
1628 /// LowerCallResult - Lower the result values of a call into the
2191 // Lower arguments at fp - stackoffset + fpdiff.
3202 // Lower quadword copied in order or undef.
3224 // Lower quadword shuffled.
5211 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2); local
5216 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
6983 // Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7001 // Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7246 // Lower IS
[all...]
/external/llvm/lib/VMCore/
H A DInstructions.cpp2976 APInt Lower(C);
2982 case ICmpInst::ICMP_NE: Lower++; break;
2984 Lower = APInt::getMinValue(BitWidth);
2986 if (Lower == Upper)
2990 Lower = APInt::getSignedMinValue(BitWidth);
2992 if (Lower == Upper)
2996 Lower++; Upper = APInt::getMinValue(BitWidth); // Min = Next(Max)
2998 if (Lower == Upper)
3002 Lower++; Upper = APInt::getSignedMinValue(BitWidth); // Min = Next(Max)
3004 if (Lower
[all...]
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp1808 APInt Lower = APInt(Width, 0); local
1817 Lower = (-Upper) + 1;
1832 Lower = IntMin.sdiv(Val);
1845 Lower = IntMin.ashr(CI2->getValue());
1850 Lower = CI2->getValue();
1855 if (Lower != Upper) {
1856 ConstantRange LHS_CR = ConstantRange(Lower, Upper);
H A DValueTracking.cpp202 ConstantInt *Lower = cast<ConstantInt>(Ranges.getOperand(2*i + 0)); local
204 ConstantRange Range(Lower->getValue(), Upper->getValue());

Completed in 364 milliseconds