/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ObjCARCAliasAnalysis.cpp | 61 const Value *UB = GetUnderlyingObjCPtr(SB); in alias() local 62 if (UA != SA || UB != SB) { in alias() 64 MemoryLocation::getBeforeOrAfter(UB), AAQI, in alias()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 353 Dir->setUpperBoundVariable(Exprs.UB); in Create() 507 Dir->setUpperBoundVariable(Exprs.UB); in Create() 654 Dir->setUpperBoundVariable(Exprs.UB); in Create() 699 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1031 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1135 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1180 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1223 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1268 Dir->setUpperBoundVariable(Exprs.UB); in Create() 1313 Dir->setUpperBoundVariable(Exprs.UB); in Create() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFTypePrinter.cpp | 24 std::optional<uint64_t> UB; in appendArrayType() local 31 UB = UpperV->getAsUnsignedConstant(); in appendArrayType() 39 if (!LB && !Count && !UB) in appendArrayType() 41 else if (!LB && (Count || UB) && DefaultLB) in appendArrayType() 42 OS << '[' << (Count ? *Count : *UB - *DefaultLB + 1) << ']'; in appendArrayType() 55 else if (UB) in appendArrayType() 56 OS << *UB + 1; in appendArrayType()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ExecutionUtils.cpp | 294 if (auto *UB = dyn_cast<object::MachOUniversalBinary>(B->getBinary())) { in Load() local 298 auto SliceRange = getSliceRangeForArch(*UB, TT); in Load() 357 if (auto *UB = dyn_cast<object::MachOUniversalBinary>(B->get())) { in Create() local 361 auto SliceRange = getSliceRangeForArch(*UB, TT); in Create() 465 object::MachOUniversalBinary &UB, const Triple &TT) { in getSliceRangeForArch() argument 467 for (const auto &Obj : UB.objects()) { in getSliceRangeForArch() 478 return make_error<StringError>(Twine("Universal binary ") + UB.getFileName() + in getSliceRangeForArch()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugInfoMetadata.cpp | 474 Metadata *LB, Metadata *UB, Metadata *Stride, in getImpl() argument 476 DEFINE_GETIMPL_LOOKUP(DISubrange, (CountNode, LB, UB, Stride)); in getImpl() 477 Metadata *Ops[] = {CountNode, LB, UB, Stride}; in getImpl() 524 Metadata *UB = getRawUpperBound(); in getUpperBound() local 525 if (!UB) in getUpperBound() 528 assert((isa<ConstantAsMetadata>(UB) || isa<DIVariable>(UB) || in getUpperBound() 529 isa<DIExpression>(UB)) && in getUpperBound() 532 if (auto *MD = dyn_cast<ConstantAsMetadata>(UB)) in getUpperBound() 535 if (auto *MD = dyn_cast<DIVariable>(UB)) in getUpperBound() 538 if (auto *MD = dyn_cast<DIExpression>(UB)) in getUpperBound() [all …]
|
H A D | DIBuilder.cpp | 728 Metadata *UB, Metadata *Stride) { in getOrCreateSubrange() argument 729 return DISubrange::get(VMContext, CountNode, LB, UB, Stride); in getOrCreateSubrange() 734 DIGenericSubrange::BoundType UB, DIGenericSubrange::BoundType Stride) { in getOrCreateGenericSubrange() argument 740 ConvToMetadata(LB), ConvToMetadata(UB), in getOrCreateGenericSubrange()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/ |
H A D | llvm-size.cpp | 580 } else if (MachOUniversalBinary *UB = in printFileSectionSizes() 588 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 589 E = UB->end_objects(); in printFileSectionSizes() local 680 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 681 E = UB->end_objects(); in printFileSectionSizes() 755 bool MoreThanOneArch = UB->getNumberOfObjects() > 1; in printFileSectionSizes() 756 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in printFileSectionSizes() 757 E = UB->end_objects(); in printFileSectionSizes()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.h | 916 llvm::Value *UB = nullptr; member 921 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk) in DispatchRTInput() 922 : LB(LB), UB(UB), Chunk(Chunk) {} in DispatchRTInput() 973 Address UB = Address::invalid(); 981 Address LB, Address UB, Address ST, 984 UB(UB), ST(ST), Chunk(Chunk) {} in IVSize() 1056 Address UB, Address ST); 1915 Address LB, Address UB, Address ST) override;
|
H A D | CGStmtOpenMP.cpp | 2880 LoopArgs.LB, LoopArgs.UB, LoopArgs.ST); in EmitOMPOuterLoop() 3033 CGDispatchBounds(*this, S, LoopArgs.LB, LoopArgs.UB); in EmitOMPForOuterLoop() 3042 IVSize, IVSigned, Ordered, LoopArgs.IL, LoopArgs.LB, LoopArgs.UB, in EmitOMPForOuterLoop() 3057 OMPLoopArguments OuterLoopArgs(LoopArgs.LB, LoopArgs.UB, LoopArgs.ST, in EmitOMPForOuterLoop() 3093 LoopArgs.UB, LoopArgs.ST, LoopArgs.Chunk); in EmitOMPDistributeOuterLoop() 3109 OuterLoopArgs.UB = LoopArgs.UB; in EmitOMPDistributeOuterLoop() 3142 LValue UB = in emitDistributeParallelForInnerBounds() local 3167 CGF.EmitStoreOfScalar(PrevUBVal, UB); in emitDistributeParallelForInnerBounds() 3169 return {LB, UB}; in emitDistributeParallelForInnerBounds() 3182 Address LB, Address UB) { in emitDistributeParallelForDispatchBounds() argument [all …]
|
/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 | 2113 MachOUniversalBinary *UB, std::vector<NMSymbol> &SymbolList, in dumpMachOUniversalBinaryMatchArchFlags() argument 2119 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpMachOUniversalBinaryMatchArchFlags() 2120 E = UB->end_objects(); in dumpMachOUniversalBinaryMatchArchFlags() 2189 static bool dumpMachOUniversalBinaryMatchHost(MachOUniversalBinary *UB, in dumpMachOUniversalBinaryMatchHost() argument 2195 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(), in dumpMachOUniversalBinaryMatchHost() 2196 E = UB->end_objects(); in dumpMachOUniversalBinaryMatchHost() 2241 static void dumpMachOUniversalBinaryArchAll(MachOUniversalBinary *UB, in dumpMachOUniversalBinaryArchAll() argument 2245 bool moreThanOneArch = UB->getNumberOfObjects() > 1; in dumpMachOUniversalBinaryArchAll() 2246 for (const MachOUniversalBinary::ObjectForArch &O : UB->objects()) { in dumpMachOUniversalBinaryArchAll() 2294 static void dumpMachOUniversalBinary(MachOUniversalBinary *UB, in dumpMachOUniversalBinary() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | LiveRangeCalc.cpp | 159 LiveRange::iterator UB = upper_bound(LR, End.getPrevSlot()); in isDefOnEntry() local 160 if (UB != LR.begin()) { in isDefOnEntry() 161 LiveRange::Segment &Seg = *std::prev(UB); in isDefOnEntry()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | ModuleSlotTracker.h | 104 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);
|
H A D | MachODump.cpp | 2348 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB, in printMachOUniversalHeaders() argument 2352 if (UB->getMagic() == MachO::FAT_MAGIC) in printMachOUniversalHeaders() 2359 uint32_t nfat_arch = UB->getNumberOfObjects(); in printMachOUniversalHeaders() 2360 StringRef Buf = UB->getData(); in printMachOUniversalHeaders() 2364 outs() << "nfat_arch " << UB->getNumberOfObjects(); in printMachOUniversalHeaders() 2373 MachOUniversalBinary::ObjectForArch OFA(UB, i); in printMachOUniversalHeaders() 2378 MachOUniversalBinary::ObjectForArch other_OFA(UB, j); in printMachOUniversalHeaders() 2565 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) { in parseInputMachO() local 2566 parseInputMachO(UB); in parseInputMachO() 2583 void objdump::parseInputMachO(MachOUniversalBinary *UB) { in parseInputMachO() argument [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 383 auto *UB = cast<MachOUniversalBinary>(&Bin); in readFile() local 385 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 | 353 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); in scanFromBlock() local 354 if (!UB) in scanFromBlock() 364 B = UB; in scanFromBlock()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIInsertWaitcnts.cpp | 793 unsigned UB = getScoreUB(T); in updateByEvent() local 794 unsigned CurrScore = UB + 1; in updateByEvent() 1064 const unsigned UB = getScoreUB(T); in determineWait() local 1065 if ((UB >= ScoreToWait) && (ScoreToWait > LB)) { in determineWait() 1080 unsigned NeededWait = std::min(UB - ScoreToWait, getWaitCountMax(T) - 1); in determineWait() 1097 const unsigned UB = getScoreUB(T); in applyWaitcnt() local 1098 if (Count >= UB) in applyWaitcnt() 1103 setScoreLB(T, std::max(getScoreLB(T), UB - Count)); in applyWaitcnt() 1105 setScoreLB(T, UB); in applyWaitcnt()
|
/freebsd/libexec/getty/ |
H A D | gettytab.h | 165 #define UB gettyflags[18].value macro
|
H A D | main.c | 672 if (!UB) { in putchr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | StructurizeCFG.cpp | 748 for (auto UB : UndefBlks) { in setPhiValues() local 754 [&](BasicBlock *CP) { return DT->dominates(CP, UB); })) in setPhiValues() 756 Updater.AddAvailableValue(UB, Undef); in setPhiValues()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | ExecutionUtils.h | 323 getSliceRangeForArch(object::MachOUniversalBinary &UB, const Triple &TT);
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 2130 Value *UB = ConstantInt::get(I32Ty, SectionCBs.size()); in createSections() local 2133 Loc, LoopBodyGenCB, LB, UB, ST, true, false, AllocaIP, "section_loop"); in createSections() 3937 Value *UB = Builder.CreateSelect(IsNeg, Start, Stop); in createCanonicalLoop() local 3938 Span = Builder.CreateSub(UB, LB, "", false, true); in createCanonicalLoop() 3940 InclusiveStop ? CmpInst::ICMP_SLT : CmpInst::ICMP_SLE, UB, LB); in createCanonicalLoop() 6215 int32_t LB, UB; in readThreadBoundsForKernel() local 6216 if (!llvm::to_integer(UBStr, UB, 10)) in readThreadBoundsForKernel() 6218 UB = ThreadLimit ? std::min(ThreadLimit, UB) : UB; in readThreadBoundsForKernel() 6220 return {0, UB}; in readThreadBoundsForKernel() 6221 return {LB, UB}; in readThreadBoundsForKernel() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DwarfCompileUnit.cpp | 1008 if (auto UB = Subrange->getUpperBound()) in dependencies() local 1009 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies() 1021 if (auto UB = GenericSubrange->getUpperBound()) in dependencies() local 1022 if (auto *Dependency = dyn_cast_if_present<DIVariable *>(UB)) in dependencies()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 560 if (MachOUniversalBinary *UB = dyn_cast_or_null<MachOUniversalBinary>(Bin)) { in getOrCreateObject() local 566 UB->getMachOObjectForArch(ArchName); in getOrCreateObject()
|