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

/freebsd-11.0-release/contrib/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));
H A DDependenceAnalysis.cpp866 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
867 if (!isa<SCEVCouldNotCompute>(UB)) {
869 SE->getTypeSizeInBits(UB->getType())) {
892 const SCEV *UB = SE->getBackedgeTakenCount(AddRec->getLoop()); local
893 if (!isa<SCEVCouldNotCompute>(UB)) {
895 SE->getTypeSizeInBits(UB->getType())) {
1001 const SCEV *UB = SE->getBackedgeTakenCount(L); local
1002 return SE->getTruncateOrZeroExtend(UB, T);
1013 if (const SCEV *UB = collectUpperBound(L, T))
1014 return dyn_cast<SCEVConstant>(UB);
[all...]
/freebsd-11.0-release/gnu/usr.bin/groff/font/devlj4/
H A DMakefile11 UB UBI UI UR \
/freebsd-11.0-release/contrib/groff/font/devlj4/
H A DMakefile.sub14 UB UBI UI UR \
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h676 bool Ordered, llvm::Value *UB,
684 /// bounds \a LB and \a UB and stride \a ST.
696 /// \param UB Address of the output variable in which the upper iteration
707 Address UB, Address ST,
740 /// \param UB Address of the output variable in which the upper iteration
747 Address UB, Address ST);
H A DCGStmtOpenMP.cpp1237 Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) {
1278 // while(__kmpc_dispatch_next(&LB, &UB)) {
1280 // while (idx <= UB) { BODY; ++idx;
1290 // while(UB = min(UB, GlobalUB), idx = LB, idx < UB) {
1291 // while (idx <= UB) { BODY; ++idx; } // inner loop
1293 // UB = UB + ST;
1307 IVSize, IVSigned, Ordered, IL, LB, UB, S
1234 EmitOMPForOuterLoop( OpenMPScheduleClauseKind ScheduleKind, bool IsMonotonic, const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered, Address LB, Address UB, Address ST, Address IL, llvm::Value *Chunk) argument
1491 LValue UB = local
[all...]
H A DCGOpenMPRuntime.cpp1809 bool Ordered, llvm::Value *UB,
1831 UB, // Upper
1843 Address UB, Address ST,
1874 UB.getPointer(), // &UB
1908 Address LB, Address UB,
1918 UB.getPointer(), // &Upper
1805 emitForDispatchInit(CodeGenFunction &CGF, SourceLocation Loc, OpenMPScheduleClauseKind ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, llvm::Value *UB, llvm::Value *Chunk) argument
1838 emitForStaticInit(CodeGenFunction &CGF, SourceLocation Loc, OpenMPScheduleClauseKind ScheduleKind, unsigned IVSize, bool IVSigned, bool Ordered, Address IL, Address LB, Address UB, Address ST, llvm::Value *Chunk) argument
1905 emitForNext(CodeGenFunction &CGF, SourceLocation Loc, unsigned IVSize, bool IVSigned, Address IL, Address LB, Address UB, Address ST) argument
H A DCodeGenFunction.h2379 Address UB, Address ST, Address IL,
/freebsd-11.0-release/contrib/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp1059 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1066 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1067 E = UB->end_objects();
1136 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1137 E = UB->end_objects();
1177 bool moreThanOneArch = UB->getNumberOfObjects() > 1;
1178 for (MachOUniversalBinary::object_iterator I = UB->begin_objects(),
1179 E = UB->end_objects();
/freebsd-11.0-release/contrib/groff/font/devlj4/generate/
H A DMakefile58 UB UBI UI UR \
142 UB: $(AUTOFONT)/9nb00088.tfm $(TEXTMAP)
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp146 Dir->setUpperBoundVariable(Exprs.UB);
195 Dir->setUpperBoundVariable(Exprs.UB);
360 Dir->setUpperBoundVariable(Exprs.UB);
407 Dir->setUpperBoundVariable(Exprs.UB);
769 Dir->setUpperBoundVariable(Exprs.UB);
816 Dir->setUpperBoundVariable(Exprs.UB);
862 Dir->setUpperBoundVariable(Exprs.UB);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Analysis/
H A DReachableCode.cpp303 const CFGBlock *UB = I->getPossiblyUnreachableBlock(); local
304 if (!UB)
314 B = UB;
/freebsd-11.0-release/libexec/getty/
H A Dgettytab.h165 #define UB gettyflags[18].value macro
H A Dmain.c679 if (!UB) {
/freebsd-11.0-release/contrib/llvm/lib/DebugInfo/Symbolize/
H A DSymbolize.cpp309 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(Bin)) {
317 UB->getObjectForArch(ArchName);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaOpenMP.cpp2781 Expr *UB;
2785 /// Var < UB
2786 /// Var <= UB
2787 /// UB > Var
2788 /// UB >= Var
2800 LB(nullptr), UB(nullptr), Step(nullptr), TestIsLessOp(false),
2805 /// \brief Check test-expr for canonical form, save upper-bound (#UB), flags
2854 assert(!LB && !UB && !Step);
2858 (UB && UB
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h440 void setUpperBoundVariable(Expr *UB) { argument
445 *std::next(child_begin(), UpperBoundVariableOffset) = UB;
506 Expr *UB; member in struct:clang::OMPLoopDirective::HelperExprs
546 UB = nullptr;
/freebsd-11.0-release/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp1323 static void printMachOUniversalHeaders(const object::MachOUniversalBinary *UB, argument
1331 uint32_t nfat_arch = UB->getNumberOfObjects();
1332 StringRef Buf = UB->getData();
1336 outs() << "nfat_arch " << UB->getNumberOfObjects();
1345 MachOUniversalBinary::ObjectForArch OFA(UB, i);
1350 MachOUniversalBinary::ObjectForArch other_OFA(UB, j);
1509 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin))
1510 printMachOUniversalHeaders(UB, !NonVerbose);
1512 if (MachOUniversalBinary *UB = dyn_cast<MachOUniversalBinary>(&Bin)) {
1519 for (MachOUniversalBinary::object_iterator I = UB
[all...]

Completed in 269 milliseconds