| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 44 : Lower(Full ? APInt::getMaxValue(BitWidth) : APInt::getMinValue(BitWidth)), in ConstantRange() 45 Upper(Lower) {} in ConstantRange() 48 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange() 51 : Lower(std::move(L)), Upper(std::move(U)) { in ConstantRange() 52 assert(Lower.getBitWidth() == Upper.getBitWidth() && in ConstantRange() 54 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange() 72 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() local 73 Lower.setSignBit(); in fromKnownBits() 75 return ConstantRange(Lower, Upper + 1); in fromKnownBits() 216 APInt Lower, Upper; in makeExactMulNSWRegion() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | ConstantRange.h | 48 APInt Lower, Upper; variable 70 ConstantRange(APInt Lower, APInt Upper); 84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { in getNonEmpty() argument 85 if (Lower == Upper) in getNonEmpty() 86 return getFull(Lower.getBitWidth()); in getNonEmpty() 87 return ConstantRange(std::move(Lower), std::move(Upper)); in getNonEmpty() 171 const APInt &getLower() const { return Lower; } in getLower() 177 uint32_t getBitWidth() const { return Lower.getBitWidth(); } in getBitWidth() 220 if (Upper == Lower + 1) in getSingleElement() 221 return &Lower; in getSingleElement() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | UnicodeCharRanges.h | 24 uint32_t Lower; member 29 return Value < Range.Lower; 75 if (I != Ranges.begin() && Prev >= I->Lower) { in rangesAreValid() 79 LLVM_DEBUG(dbgs().write_hex(I->Lower) << "\n"); in rangesAreValid() 82 if (I->Upper < I->Lower) { in rangesAreValid() 84 LLVM_DEBUG(dbgs().write_hex(I->Lower)); in rangesAreValid()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZAsmPrinter.cpp | 128 SystemZMCInstLower Lower(MF->getContext(), *this); in emitInstruction() local 223 .addExpr(Lower.getExpr(MI->getOperand(0), in emitInstruction() 242 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 253 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 260 .addExpr(Lower.getExpr(MI->getOperand(2), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 351 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_TLSGD)); in emitInstruction() 358 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_TLSLDM)); in emitInstruction() 404 Lower.lower(MI, LoweredMI); in emitInstruction() 409 Lower.lower(MI, LoweredMI); in emitInstruction() 414 Lower.lower(MI, LoweredMI); in emitInstruction() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 33 uint64_t Upper = P1, Lower = P4; in multiply64() local 35 uint64_t NewLower = Lower + (getL(N) << 32); in multiply64() 36 Upper += getU(N) + (NewLower < Lower); in multiply64() 37 Lower = NewLower; in multiply64() 44 return std::make_pair(Lower, 0); in multiply64() 50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64() 52 Shift && (Lower & UINT64_C(1) << (Shift - 1))); in multiply64()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 115 const_iterator Lower = llvm::lower_bound(Original, Element); in add() local 116 Result.insert(Result.end(), Original.begin(), Lower); in add() 118 Result.insert(Result.end(), Lower, Original.end()); in add() 194 bool RangeSet::pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { in pin() argument 201 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower, true); in pin() 210 if (Lower <= Upper) in pin() 214 Lower = Type.getMinValue(); in pin() 219 Lower = Type.getMinValue(); in pin() 224 Lower = Type.getMinValue(); in pin() 233 Type.apply(Lower); in pin() [all …]
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/ |
| H A D | guess_example.txt | 10 Lower... 18 Lower... 20 Lower...
|
| /netbsd-src/external/cddl/dtracetoolkit/dist/Examples/ |
| H A D | guess_example.txt | 10 Lower... 18 Lower... 20 Lower...
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 165 Node *rotateLeft(Node *Lower, Node *Higher); 166 Node *rotateRight(Node *Lower, Node *Higher); 664 RangeTree::Node *RangeTree::rotateLeft(Node *Lower, Node *Higher) { in rotateLeft() argument 665 assert(Higher->Right == Lower); in rotateLeft() 669 if (height(Lower->Left) > height(Lower->Right)) in rotateLeft() 670 Lower = rotateRight(Lower->Left, Lower); in rotateLeft() 671 assert(height(Lower->Left) <= height(Lower->Right)); in rotateLeft() 672 Higher->Right = Lower->Left; in rotateLeft() 674 Lower->Left = Higher; in rotateLeft() 675 update(Lower); in rotateLeft() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 76 Lower, enumerator 609 return actionIf(LegalizeAction::Lower, always); in lower() 618 return actionIf(LegalizeAction::Lower, Predicate); in lowerIf() 626 return actionIf(LegalizeAction::Lower, Predicate, Mutation); in lowerIf() 631 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 637 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() 642 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 648 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() 655 return actionForCartesianProduct(LegalizeAction::Lower, Types0, Types1); in lowerForCartesianProduct() 663 return actionForCartesianProduct(LegalizeAction::Lower, Types0, Types1, in lowerForCartesianProduct() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | StratifiedSets.h | 513 auto *Lower = &linksAt(LowerIndex); in tryMergeUpwards() local 515 if (Lower == Upper) in tryMergeUpwards() 519 auto *Current = Lower; in tryMergeUpwards() 532 if (Lower->hasBelow()) { in tryMergeUpwards() 533 auto NewBelowIndex = Lower->getBelow(); in tryMergeUpwards()
|
| H A D | ValueTracking.cpp | 462 ConstantInt *Lower = in computeKnownBitsFromRangeMetadata() local 466 ConstantRange Range(Lower->getValue(), Upper->getValue()); in computeKnownBitsFromRangeMetadata() 2191 ConstantInt *Lower = in rangeMetadataExcludesValue() local 2195 ConstantRange Range(Lower->getValue(), Upper->getValue()); in rangeMetadataExcludesValue() 6621 static void setLimitsForBinOp(const BinaryOperator &BO, APInt &Lower, in setLimitsForBinOp() argument 6623 unsigned Width = Lower.getBitWidth(); in setLimitsForBinOp() 6631 Lower = *C; in setLimitsForBinOp() 6635 Lower = APInt::getSignedMinValue(Width); in setLimitsForBinOp() 6639 Lower = APInt::getSignedMinValue(Width) + *C; in setLimitsForBinOp() 6655 Lower = *C; in setLimitsForBinOp() [all …]
|
| H A D | DependenceAnalysis.cpp | 2544 if (Bound[K].Lower[Dependence::DVEntry::ALL]) in banerjeeMIVtest() 2545 LLVM_DEBUG(dbgs() << *Bound[K].Lower[Dependence::DVEntry::ALL] << '\t'); in banerjeeMIVtest() 2644 if (Bound[Level].Lower[Dependence::DVEntry::LT]) in exploreDirections() 2645 LLVM_DEBUG(dbgs() << *Bound[Level].Lower[Dependence::DVEntry::LT] in exploreDirections() 2655 if (Bound[Level].Lower[Dependence::DVEntry::EQ]) in exploreDirections() 2656 LLVM_DEBUG(dbgs() << *Bound[Level].Lower[Dependence::DVEntry::EQ] in exploreDirections() 2666 if (Bound[Level].Lower[Dependence::DVEntry::GT]) in exploreDirections() 2667 LLVM_DEBUG(dbgs() << *Bound[Level].Lower[Dependence::DVEntry::GT] in exploreDirections() 2735 Bound[K].Lower[Dependence::DVEntry::ALL] = nullptr; // Default value = -infinity. in findBoundsALL() 2738 Bound[K].Lower[Dependence::DVEntry::ALL] = in findBoundsALL() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/ |
| H A D | LanaiAsmPrinter.cpp | 176 MCInstLowering.Lower(MI, TmpInst); in emitCallInstruction() 193 MCInstLowering.Lower(MI, TmpInst); in customEmitInstruction()
|
| H A D | LanaiMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /netbsd-src/external/mit/xorg/lib/libXmuu/ |
| H A D | Makefile | 8 SRCS= ClientWin.c CursorName.c DefErrMsg.c GetHost.c Lower.c
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/XCore/ |
| H A D | XCoreMCInstLower.h | 30 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARC/ |
| H A D | ARCMCInstLower.h | 33 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| H A D | ARCAsmPrinter.cpp | 62 MCInstLowering.Lower(MI, TmpInst); in emitInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| H A D | BPFMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | Lanai.def | 18 // Lower 16-bits of a symbolic relocation
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| H A D | M68kMCInstLower.h | 50 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /netbsd-src/sys/arch/amiga/stand/bootblock/boot/ |
| H A D | amigatypes.h | 60 u_int32_t First, Lower, Upper, Free; member
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/ |
| H A D | MSP430MCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MipsMCInstLower.h | 37 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|