| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
| H A D | MachO.cpp | 203 getMachOSliceRangeForTriple(object::MachOUniversalBinary &UB, in getMachOSliceRangeForTriple() argument 206 for (const auto &Obj : UB.objects()) { in getMachOSliceRangeForTriple() 217 return make_error<StringError>(Twine("Universal binary ") + UB.getFileName() + in getMachOSliceRangeForTriple() 226 auto UB = object::MachOUniversalBinary::create(UBBuf); in getMachOSliceRangeForTriple() local 227 if (!UB) in getMachOSliceRangeForTriple() 228 return UB.takeError(); in getMachOSliceRangeForTriple() 230 return getMachOSliceRangeForTriple(**UB, TT); in getMachOSliceRangeForTriple()
|
| H A D | ExecutionUtils.cpp | 390 if (auto *UB = dyn_cast<object::MachOUniversalBinary>(B->get())) { in Create() local 394 auto SliceRange = getMachOSliceRangeForTriple(*UB, TT); in Create()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ObjCARCAliasAnalysis.cpp | 59 const Value *UB = GetUnderlyingObjCPtr(SB); in alias() local 60 if (UA != SA || UB != SB) { in alias() 62 MemoryLocation::getBeforeOrAfter(UB), AAQI, in alias()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 352 Dir->setUpperBoundVariable(Exprs.UB); in Create() 528 Dir->setUpperBoundVariable(Exprs.UB); in Create() 675 Dir->setUpperBoundVariable(Exprs.UB); in Create() 720 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1069 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1173 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1218 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1261 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1306 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1351 Dir->setUpperBoundVariable(Exprs.UB); in Create() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/ |
| H A D | InstrMaps.h | 36 Action(const LegalityResult *LR, ArrayRef<Value *> B, ArrayRef<Value *> UB, in Action() 38 : LegalityRes(LR), Bndl(B), UserBndl(UB), Depth(Depth) {} in Action()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.h | 102 std::optional<uint64_t> UB; in appendArrayType() local 112 UB = UpperV->getAsUnsignedConstant(); in appendArrayType() 118 if (!LB && !Count && !UB) in appendArrayType() 120 else if (!LB && (Count || UB) && DefaultLB) in appendArrayType() 121 OS << '[' << (Count ? *Count : *UB - *DefaultLB + 1) << ']'; in appendArrayType() 134 else if (UB) in appendArrayType() 135 OS << *UB + 1; in appendArrayType()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-size/ |
| H A D | llvm-size.cpp | 583 } else if (MachOUniversalBinary *UB = in printFileSectionSizes() local 591 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 592 E = UB->end_objects(); in printFileSectionSizes() 683 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 684 E = UB->end_objects(); in printFileSectionSizes() 758 bool MoreThanOneArch = UB->getNumberOfObjects() > 1; in printFileSectionSizes() 759 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 760 E = UB->end_objects(); in printFileSectionSizes()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 898 llvm::Value *UB = nullptr; member 903 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk) in DispatchRTInput() 904 : LB(LB), UB(UB), Chunk(Chunk) {} in DispatchRTInput() 955 Address UB = Address::invalid(); 963 Address LB, Address UB, Address ST, 966 UB(UB), ST(ST), Chunk(Chunk) {} in IVSize() 1038 Address UB, Address ST); 1909 Address LB, Address UB, Address ST) override;
|
| H A D | CGStmtOpenMP.cpp | 3022 LoopArgs.LB, LoopArgs.UB, LoopArgs.ST); in EmitOMPOuterLoop() 3176 CGDispatchBounds(*this, S, LoopArgs.LB, LoopArgs.UB); in EmitOMPForOuterLoop() 3185 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop() 3201 OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST, in EmitOMPForOuterLoop() 3238 LoopArgs.UB, LoopArgs.ST, LoopArgs.Chunk); in EmitOMPDistributeOuterLoop() 3254 OuterLoopArgs.UB = LoopArgs.UB; in EmitOMPDistributeOuterLoop() 3287 LValue UB = in emitDistributeParallelForInnerBounds() local 3312 CGF.EmitStoreOfScalar(PrevUBVal, UB); in emitDistributeParallelForInnerBounds() 3314 return {LB, UB}; in emitDistributeParallelForInnerBounds() 3327 Address LB, Address UB) { in emitDistributeParallelForDispatchBounds() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | DebugInfoMetadata.cpp | 654 Metadata *LB, Metadata *UB, Metadata *Stride, in getImpl() argument 656 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl() 657 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() 704 Metadata *UB = getRawUpperBound(); in getUpperBound() local 705 if (!UB) in getUpperBound() 708 assert((isa<ConstantAsMetadata>(UB) || isa<DIVariable>(UB) || in getUpperBound() 709 isa<DIExpression>(UB)) && in getUpperBound() 712 if (auto *MD = dyn_cast<ConstantAsMetadata>(UB)) in getUpperBound() 715 if (auto *MD = dyn_cast<DIVariable>(UB)) in getUpperBound() 718 if (auto *MD = dyn_cast<DIExpression>(UB)) in getUpperBound() [all …]
|
| H A D | DIBuilder.cpp | 836 Metadata *UB, Metadata *Stride) { in getOrCreateSubrange() argument 837 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange() 842 DIGenericSubrange::BoundType UB, DIGenericSubrange::BoundType Stride) { in getOrCreateGenericSubrange() argument 848 ConvToMetadata(LB), ConvToMetadata(UB), in getOrCreateGenericSubrange()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
| H A D | int_div_impl.inc | 26 // 1 <= sr <= N - 1. Shifts do not trigger UB. 55 // 1 <= sr <= N - 1. Shifts do not trigger UB.
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 2115 MachOUniversalBinary *UB, std::vector<NMSymbol> &SymbolList, in dumpMachOUniversalBinaryMatchArchFlags() argument 2121 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpMachOUniversalBinaryMatchArchFlags() 2122 E = UB->end_objects(); in dumpMachOUniversalBinaryMatchArchFlags() 2191 static bool dumpMachOUniversalBinaryMatchHost(MachOUniversalBinary *UB, in dumpMachOUniversalBinaryMatchHost() argument 2197 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpMachOUniversalBinaryMatchHost() 2198 E = UB->end_objects(); in dumpMachOUniversalBinaryMatchHost() 2243 static void dumpMachOUniversalBinaryArchAll(MachOUniversalBinary *UB, in dumpMachOUniversalBinaryArchAll() argument 2247 bool moreThanOneArch = UB->getNumberOfObjects() > 1; in dumpMachOUniversalBinaryArchAll() 2248 for (const MachOUniversalBinary::ObjectForArch &O : UB->objects()) { in dumpMachOUniversalBinaryArchAll() 2296 static void dumpMachOUniversalBinary(MachOUniversalBinary *UB, in dumpMachOUniversalBinary() argument [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | LiveRangeCalc.cpp | 158 LiveRange::iterator UB = upper_bound(LR, End.getPrevSlot()); in isDefOnEntry() local 159 if (UB != LR.begin()) { in isDefOnEntry() 160 LiveRange::Segment &Seg = *std::prev(UB); in isDefOnEntry()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ModuleSlotTracker.h | 105 void collectMDNodes(MachineMDNodeListType &L, unsigned LB, unsigned UB) const;
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | MachODump.h | 74 void parseInputMachO(object::MachOUniversalBinary *UB);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachO.h | 74 getMachOSliceRangeForTriple(object::MachOUniversalBinary &UB, const Triple &TT);
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
| H A D | DylibReader.cpp | 382 auto *UB = cast<MachOUniversalBinary>(&Bin); in readFile() local 384 for (auto OI = UB->begin_objects(), OE = UB->end_objects(); OI != OE; ++OI) { in readFile()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 352 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); in scanFromBlock() local 353 if (!UB) in scanFromBlock() 363 B = UB; in scanFromBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | SIInsertWaitcnts.cpp | 916 unsigned UB = getScoreUB(T); in updateByEvent() local 917 unsigned CurrScore = UB + 1; in updateByEvent() 1190 const unsigned UB = getScoreUB(T); in determineWait() local 1196 if ((UB >= ScoreToWait) && (ScoreToWait > LB)) { in determineWait() 1212 std::min(UB - ScoreToWait, getWaitCountMax(T) - 1); in determineWait() 1231 const unsigned UB = getScoreUB(T); in applyWaitcnt() local 1232 if (Count >= UB) in applyWaitcnt() 1237 setScoreLB(T, std::max(getScoreLB(T), UB - Count)); in applyWaitcnt() 1239 setScoreLB(T, UB); in applyWaitcnt()
|
| /freebsd/libexec/getty/ |
| H A D | gettytab.h | 165 #define UB gettyflags[18].value macro
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | StructurizeCFG.cpp | 870 for (auto UB : UndefBlks) { in setPhiValues() local 876 [&](BasicBlock *CP) { return DT->dominates(CP, UB); })) in setPhiValues() 879 if (Updater.HasValueForBlock(UB)) in setPhiValues() 882 Updater.AddAvailableValue(UB, Poison); in setPhiValues()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | DXILResource.h | 655 BindingRange(uint32_t LB, uint32_t UB) : LowerBound(LB), UpperBound(UB) {} in BindingRange()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 2269 Value *UB = ConstantInt::get(I32Ty, SectionCBs.size()); in createSections() local 2272 Loc, LoopBodyGenCB, LB, UB, ST, true, false, AllocaIP, "section_loop"); in createSections() 4156 Value *UB = Builder.CreateSelect(IsNeg, Start, Stop); in calculateCanonicalLoopTripCount() local 4157 Span = Builder.CreateSub(UB, LB, "", false, true); in calculateCanonicalLoopTripCount() 4159 InclusiveStop ? CmpInst::ICMP_SLT : CmpInst::ICMP_SLE, UB, LB); in calculateCanonicalLoopTripCount() 6525 int32_t LB, UB; in readThreadBoundsForKernel() local 6526 if (!llvm::to_integer(UBStr, UB, 10)) in readThreadBoundsForKernel() 6528 UB = ThreadLimit ? std::min(ThreadLimit, UB) : UB; in readThreadBoundsForKernel() 6530 return {0, UB}; in readThreadBoundsForKernel() 6531 return {LB, UB}; in readThreadBoundsForKernel() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DwarfCompileUnit.cpp | 1040 if (auto UB = Subrange->getUpperBound()) in dependencies() local 1041 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies() 1053 if (auto UB = GenericSubrange->getUpperBound()) in dependencies() local 1054 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies()
|