HomeSort by relevance Sort by last modified time
    Searched defs:Lower (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/Support/
ConstantRange.h 11 // for an integral value. This keeps track of a lower and upper bound for the
13 // keeps track of a [lower, upper) bound, which specifies an interval just like
43 APInt Lower, Upper;
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
69 /// getLower - Return the lower value for this range...
71 const APInt &getLower() const { return Lower; }
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
112 if (Upper == Lower + 1
    [all...]
  /external/llvm/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 10 // This file contains code to lower MBlaze MachineInstrs to their corresponding
115 void MBlazeMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 10 // This file contains code to lower MSP430 MachineInstrs to their corresponding
109 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 10 // This file contains code to lower Mips MachineInstrs to their corresponding
155 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 11 /// \brief This file contains code to lower XCore MachineInstrs to their
107 void XCoreMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/clang/lib/Lex/
UnicodeCharSets.h 22 uint32_t Lower;
52 if (Prev >= I->Lower) {
55 DEBUG(llvm::dbgs() << " should be less than succeeding lower bound 0x");
56 DEBUG(llvm::dbgs().write_hex(I->Lower) << "\n");
59 if (I->Upper < I->Lower) {
61 DEBUG(llvm::dbgs().write_hex(I->Lower));
62 DEBUG(llvm::dbgs() << " should not be less than lower bound 0x");
90 if (C < CharSet[MidPoint].Lower)
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 106 const llvm::APSInt &Lower,
120 if (i->To() < Lower) {
127 if (i->Includes(Lower)) {
129 newRanges = F.add(newRanges, Range(BV.getValue(Lower),
133 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
151 // both the upper and lower bounds against the symbol's type.
156 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower);
165 if (Lower < Upper)
169 Lower = Type.getMinValue()
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 10 // This file contains code to lower X86 MachineInstrs to their corresponding
34 /// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
46 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
67 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
334 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
482 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
715 // Lower these as normal, but add some comments.
724 // Lower these as normal, but add some comments.
758 // Lower the MO_GOT_ABSOLUTE_ADDRESS form of ADD32ri.
772 // Now that we have emitted the label, lower the complex operand expression
    [all...]
X86ISelLowering.cpp 10 // This file defines the interfaces that X86 uses to lower LLVM code into a
133 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
617 // Lower this to FGETSIGNx86 plus an AND.
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 161 /** View matrix as a lower triangular matrix. */
162 Lower=0x1,
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. */
169 /** View matrix as a lower triangular matrix with ones on the diagonal. */
170 UnitLower=UnitDiag|Lower,
173 /** View matrix as a lower triangular matrix with zeros on the diagonal. */
174 StrictlyLower=ZeroDiag|Lower,
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 330 const SCEV *Lower[8];
748 /// computes the lower bound given the current direction settings
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 202 ConstantInt *Lower = cast<ConstantInt>(Ranges.getOperand(2*i + 0));
204 ConstantRange Range(Lower->getValue(), Upper->getValue());
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 756 milliseconds