Searched refs:UB (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCAliasAnalysis.cpp58 const Value *UB = GetUnderlyingObjCPtr(SB, DL); local
59 if (UA != SA || UB != SB) {
60 Result = AAResultBase::alias(MemoryLocation(UA), MemoryLocation(UB), AAQI);
H A DDependenceAnalysis.cpp894 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
895 if (!isa<SCEVCouldNotCompute>(UB)) {
897 SE->getTypeSizeInBits(UB->getType())) {
1069 const SCEV *UB = SE->getBackedgeTakenCount(L); local
1070 return SE->getTruncateOrZeroExtend(UB, T);
1080 if (const SCEV *UB = collectUpperBound(L, T))
1081 return dyn_cast<SCEVConstant>(UB);
1354 // i = i' = UB
1685 // If i < 0 or > UB, there's no dependence.
1688 // If i = UB, th
[all...]
/freebsd-11-stable/gnu/usr.bin/groff/font/devlj4/
H A DMakefile11 UB UBI UI UR \
/freebsd-11-stable/contrib/groff/font/devlj4/
H A DMakefile.sub14 UB UBI UI UR \
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertWaitcnts.cpp327 uint32_t UB = ScoreUBs[T] - getWaitCountMax(EXP_CNT); local
328 if (ScoreLBs[T] < UB && UB < ScoreUBs[T])
329 ScoreLBs[T] = UB;
670 uint32_t UB = getScoreUB(T); local
674 OS << " VM_CNT(" << UB - LB << "): ";
677 OS << " LGKM_CNT(" << UB - LB << "): ";
680 OS << " EXP_CNT(" << UB - LB << "): ";
683 OS << " VS_CNT(" << UB - LB << "): ";
686 OS << " UNKNOWN(" << UB
731 const uint32_t UB = getScoreUB(T); local
744 const uint32_t UB = getScoreUB(T); local
775 const uint32_t UB = getScoreUB(T); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp579 } else if (MachOUniversalBinary *UB =
587 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
588 E = UB->end_objects();
679 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
680 E = UB->end_objects();
754 bool MoreThanOneArch = UB->getNumberOfObjects() > 1;
755 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
756 E = UB->end_objects();
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h1028 llvm::Value *UB = nullptr; member in struct:clang::CodeGen::CGOpenMPRuntime::OffloadEntriesInfoManagerTy::DispatchRTInput
1033 DispatchRTInput(llvm::Value *LB, llvm::Value *UB, llvm::Value *Chunk) argument
1034 : LB(LB), UB(UB), Chunk(Chunk) {}
1044 /// bounds \a LB and \a UB and stride \a ST.
1077 Address UB = Address::invalid(); member in struct:clang::CodeGen::CGOpenMPRuntime::OffloadEntriesInfoManagerTy::StaticRTInput
1085 Address LB, Address UB, Address ST,
1088 UB(UB), ST(ST), Chunk(Chunk) {}
1097 /// bounds LB and UB an
1084 StaticRTInput(unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk = nullptr) argument
[all...]
H A DCGStmtOpenMP.cpp2064 // UB = min(UB, GlobalUB) or
2065 // UB = min(UB, PrevUB) for combined loop sharing constructs (e.g.
2070 // IV < UB
2075 LoopArgs.LB, LoopArgs.UB, LoopArgs.ST);
2115 // while (idx <= UB) { BODY; ++idx; }
2118 // while (idx <= UB) { <CodeGen rest of pragma>; idx += ST; }
2132 // Emit "LB = LB + Stride", "UB = UB
2327 LValue UB = local
2365 emitDistributeParallelForDispatchBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S, Address LB, Address UB) argument
2392 LValue UB = local
2552 LValue UB = Bounds.second; local
2738 LValue UB = local
2748 emitDispatchForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S, Address LB, Address UB) argument
3657 LValue UB = EmitOMPHelperVar( local
[all...]
H A DCodeGenFunction.h285 Address UB)>
3295 Address UB = Address::invalid(); member in struct:clang::CodeGen::CodeGenFunction::OMPLoopArguments
3312 /// Update of UB after a whole chunk has been executed
3315 OMPLoopArguments(Address LB, Address UB, Address ST, Address IL, argument
3320 : LB(LB), UB(UB), ST(ST), IL(IL), Chunk(Chunk), EUB(EUB),
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp253 Dir->setUpperBoundVariable(Exprs.UB);
306 Dir->setUpperBoundVariable(Exprs.UB);
472 Dir->setUpperBoundVariable(Exprs.UB);
524 Dir->setUpperBoundVariable(Exprs.UB);
891 Dir->setUpperBoundVariable(Exprs.UB);
1036 Dir->setUpperBoundVariable(Exprs.UB);
1088 Dir->setUpperBoundVariable(Exprs.UB);
1139 Dir->setUpperBoundVariable(Exprs.UB);
1192 Dir->setUpperBoundVariable(Exprs.UB);
1246 Dir->setUpperBoundVariable(Exprs.UB);
[all...]
H A DExprConstant.cpp571 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX)); local
572 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
573 return &std::prev(UB)->second;
579 auto UB = Temporaries.upper_bound(MapKeyTy(Key, UINT_MAX)); local
580 if (UB != Temporaries.begin() && std::prev(UB)->first.first == Key)
581 return std::prev(UB)->first.second;
1599 // An index of 0 has no effect. (In C, adding 0 to a null pointer is UB,
7830 // variables (in the latter case, use-before-assign isn't UB; i
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDie.cpp121 Optional<uint64_t> UB;
128 UB = UpperV->getAsUnsignedConstant();
136 if (!LB && !Count && !UB)
138 else if (!LB && (Count || UB) && DefaultLB)
139 OS << '[' << (Count ? *Count : *UB - *DefaultLB + 1) << ']';
152 else if (UB)
153 OS << *UB + 1;
/freebsd-11-stable/contrib/groff/font/devlj4/generate/
H A DMakefile58 UB UBI UI UR \
142 UB: $(AUTOFONT)/9nb00088.tfm $(TEXTMAP)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp345 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); local
346 if (!UB)
356 B = UB;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveRangeCalc.cpp313 LiveRange::iterator UB = std::upper_bound(LR.begin(), LR.end(), local
315 if (UB != LR.begin()) {
316 LiveRange::Segment &Seg = *std::prev(UB);
/freebsd-11-stable/libexec/getty/
H A Dgettytab.h166 #define UB gettyflags[18].value macro
H A Dmain.c681 if (!UB) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h113 void parseInputMachO(object::MachOUniversalBinary *UB);
H A DMachODump.cpp2144 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB, argument
2148 if (UB->getMagic() == MachO::FAT_MAGIC)
2150 else // UB->getMagic() == MachO::FAT_MAGIC_64
2155 uint32_t nfat_arch = UB->getNumberOfObjects();
2156 StringRef Buf = UB->getData();
2160 outs() << "nfat_arch " << UB->getNumberOfObjects();
2169 MachOUniversalBinary::ObjectForArch OFA(UB, i);
2174 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
2361 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
2362 parseInputMachO(UB);
2379 parseInputMachO(MachOUniversalBinary *UB) argument
[all...]
H A Dllvm-objdump.cpp2273 else if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Binary))
2274 parseInputMachO(UB);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp479 if (MachOUniversalBinary *UB = dyn_cast_or_null<MachOUniversalBinary>(Bin)) {
485 UB->getMachOObjectForArch(ArchName);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1853 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1860 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1861 E = UB->end_objects();
1946 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1947 E = UB->end_objects();
1998 bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1999 for (const MachOUniversalBinary::ObjectForArch &O : UB->objects()) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h622 void setUpperBoundVariable(Expr *UB) { argument
627 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
748 Expr *UB; member in struct:clang::OMPLoopDirective::DistCombinedHelperExprs
798 Expr *UB; member in struct:clang::OMPLoopDirective::HelperExprs
801 /// EnsureUpperBound -- expression UB = min(UB, NumIterations).
819 /// when ensuring that the UB is either the calculated UB by the runtime or
821 /// expression UB = min (UB, PrevU
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp6858 SmallString<128> UB; local
6859 UB += "-inputs=";
6862 UB += ',';
6873 UB += CurTC->getInputFilename(Inputs[I]);
6875 CmdArgs.push_back(TCArgs.MakeArgString(UB));
6933 SmallString<128> UB; local
6934 UB += "-outputs=";
6937 UB += ',';
6938 UB += DepInfo[I].DependentToolChain->getInputFilename(Outputs[I]);
6940 CmdArgs.push_back(TCArgs.MakeArgString(UB));
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp5685 Expr *UB = nullptr;
5689 /// Var < UB
5690 /// Var <= UB
5691 /// UB > Var
5692 /// UB >= Var
5721 /// Check test-expr for canonical form, save upper-bound (#UB), flags
5799 assert(!LB && !UB && !Step);
5803 (LB && LB->isValueDependent()) || (UB && UB->isValueDependent()) ||
5812 UB
[all...]

Completed in 345 milliseconds

12