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

  /external/llvm/include/llvm/IR/
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;
58 /// Lower==Upper and Lower != Min or Max value for its type. It will also
60 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
72 /// getLower - Return the lower value for this range...
74 const APInt &getLower() const { return Lower; }
82 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
115 if (Upper == Lower + 1
    [all...]
  /external/llvm/include/llvm/Support/
UnicodeCharRanges.h 26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
28 uint32_t Lower;
33 return Value < Range.Lower;
70 if (I != Ranges.begin() && Prev >= I->Lower) {
73 DEBUG(dbgs() << " should be less than succeeding lower bound 0x");
74 DEBUG(dbgs().write_hex(I->Lower) << "\n");
77 if (I->Upper < I->Lower) {
79 DEBUG(dbgs().write_hex(I->Lower));
80 DEBUG(dbgs() << " should not be less than lower bound 0x");
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 10 // This file contains code to lower AArch64 MachineInstrs to their corresponding
194 void AArch64MCInstLower::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
113 void MSP430MCInstLower::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/llvm/lib/Support/
ScaledNumber.cpp 33 uint64_t Upper = P1, Lower = P4;
35 uint64_t NewLower = Lower + (getL(N) << 32);
36 Upper += getU(N) + (NewLower < Lower);
37 Lower = NewLower;
44 return std::make_pair(Lower, 0);
50 Upper = Upper << LeadingZeros | Lower >> Shift;
52 Shift && (Lower & UINT64_C(1) << (Shift - 1)));
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 10 // This file contains code to lower Mips MachineInstrs to their corresponding
168 // Lower register operand.
182 // Lower two register operands.
219 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /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, true);
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
37 /// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
47 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
71 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
345 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
477 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
737 // Lower a stackmap of the form:
750 // Lower a patchpoint of the form:
798 // Lower these as normal, but add some comments.
807 // Lower these as normal, but add some comments
    [all...]
X86ISelLowering.cpp 10 // This file defines the interfaces that X86 uses to lower LLVM code into a
178 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
519 // If we don't have F16C support, then lower half float conversions
672 // Lower this to FGETSIGNx86 plus an AND.
    [all...]
  /external/chromium_org/v8/test/cctest/compiler/
test-simplified-lowering.cc 670 Lower();
678 Lower();
682 void Lower() {
766 t.Lower();
782 t.Lower();
798 t.Lower();
814 t.Lower();
831 t.Lower();
843 t.Lower();
858 t.Lower();
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 364 const SCEV *Lower[8];
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 166 /** View matrix as a lower triangular matrix. */
167 Lower=0x1,
170 /** %Matrix has ones on the diagonal; to be used in combination with #Lower or #Upper. */
172 /** %Matrix has zeros on the diagonal; to be used in combination with #Lower or #Upper. */
174 /** View matrix as a lower triangular matrix with ones on the diagonal. */
175 UnitLower=UnitDiag|Lower,
178 /** View matrix as a lower triangular matrix with zeros on the diagonal. */
179 StrictlyLower=ZeroDiag|Lower,
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 200 ConstantInt *Lower = cast<ConstantInt>(Ranges.getOperand(2*i + 0));
202 ConstantRange Range(Lower->getValue(), Upper->getValue());
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 583 // Lower a FrameIndex to a TargetFrameIndex.
596 // Lower the displacement to a TargetConstant.
    [all...]
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 626 milliseconds