Searched defs:Lower (Results 1 - 10 of 10) sorted by relevance

/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/llvm/lib/Target/MSP430/
H A DMSP430MCInstLower.cpp109 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MSP430MCInstLower
/external/llvm/lib/Target/MBlaze/
H A DMBlazeMCInstLower.cpp115 void MBlazeMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MBlazeMCInstLower
/external/llvm/lib/Target/Mips/
H A DMipsMCInstLower.cpp151 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:MipsMCInstLower
/external/llvm/lib/Target/X86/
H A DX86MCInstLower.cpp42 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
307 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:X86MCInstLower
411 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
659 // Lower these as normal, but add some comments.
668 // Lower these as normal, but add some comments.
706 // Lower the MO_GOT_ABSOLUTE_ADDRESS form of ADD32ri.
742 MCInstLowering.Lower(MI, TmpInst);
H A DX86ISelLowering.cpp591 // Lower this to FGETSIGNx86 plus an AND.
1653 /// LowerCallResult - Lower the result values of a call into the
2238 // Lower arguments at fp - stackoffset + fpdiff.
3227 // Lower quadword copied in order or undef.
3237 // Lower quadword copied in order or undef.
3260 // Lower quadword shuffled.
3270 // Lower quadword shuffled.
5425 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2); local
5430 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
7206 // Lower
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp109 const llvm::APSInt &Lower,
123 if (i->To() < Lower) {
130 if (i->Includes(Lower)) {
132 newRanges = F.add(newRanges, Range(BV.getValue(Lower),
136 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
152 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { argument
159 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower);
168 if (Lower < Upper)
172 Lower = Type.getMinValue();
177 Lower
108 IntersectInRange(BasicValueFactory &BV, Factory &F, const llvm::APSInt &Lower, const llvm::APSInt &Upper, PrimRangeSet &newRanges, PrimRangeSet::iterator &i, PrimRangeSet::iterator &e) const argument
241 Intersect(BasicValueFactory &BV, Factory &F, llvm::APSInt Lower, llvm::APSInt Upper) const argument
517 llvm::APSInt Lower = ComparisonVal-Adjustment; local
546 llvm::APSInt Lower = Min-Adjustment; local
[all...]
/external/eigen/Eigen/src/Core/util/
H A DConstants.h162 Lower=0x1, enumerator in enum:Eigen::__anon5477
165 /** %Matrix has ones on the diagonal; to be used in combination with #Lower or #Upper. */
167 /** %Matrix has zeros on the diagonal; to be used in combination with #Lower or #Upper. */
170 UnitLower=UnitDiag|Lower,
174 StrictlyLower=ZeroDiag|Lower,
/external/llvm/lib/Analysis/
H A DValueTracking.cpp202 ConstantInt *Lower = cast<ConstantInt>(Ranges.getOperand(2*i + 0)); local
204 ConstantRange Range(Lower->getValue(), Upper->getValue());
H A DInstructionSimplify.cpp1814 APInt Lower = APInt(Width, 0); local
1823 Lower = (-Upper) + 1;
1838 Lower = IntMin.sdiv(Val);
1851 Lower = IntMin.ashr(CI2->getValue());
1856 Lower = CI2->getValue();
1861 if (Lower != Upper) {
1862 ConstantRange LHS_CR = ConstantRange(Lower, Upper);

Completed in 288 milliseconds