Searched refs:NewU (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Analysis/
H A DPtrUseVisitor.cpp21 UseToVisit NewU = { local
25 Worklist.push_back(std::move(NewU));
H A DConstantFolding.cpp1046 for (const Use &NewU : CE->operands()) {
1047 auto *NewC = cast<Constant>(&NewU);
/external/llvm/lib/IR/
H A DConstantRange.cpp750 APInt NewU = APIntOps::smax(getSignedMax(), Other.getSignedMax()) + 1; local
751 if (NewU == NewL)
753 return ConstantRange(NewL, NewU);
763 APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1; local
764 if (NewU == NewL)
766 return ConstantRange(NewL, NewU);
776 APInt NewU = APIntOps::smin(getSignedMax(), Other.getSignedMax()) + 1; local
777 if (NewU == NewL)
779 return ConstantRange(NewL, NewU);
789 APInt NewU local
[all...]
/external/swiftshader/third_party/LLVM/lib/Support/
H A DConstantRange.cpp573 APInt NewU = APIntOps::smax(getSignedMax(), Other.getSignedMax()) + 1; local
574 if (NewU == NewL)
576 return ConstantRange(NewL, NewU);
586 APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1; local
587 if (NewU == NewL)
589 return ConstantRange(NewL, NewU);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1790 std::unique_ptr<DwarfCompileUnit> NewU) {
1791 NewU->addString(Die, dwarf::DW_AT_GNU_dwo_name,
1795 NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir);
1797 addGnuPubAttributes(*NewU, Die);
1799 SkeletonHolder.addUnit(std::move(NewU));
1789 initSkeletonUnit(const DwarfUnit &U, DIE &Die, std::unique_ptr<DwarfCompileUnit> NewU) argument
H A DDwarfDebug.h401 std::unique_ptr<DwarfCompileUnit> NewU);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1800 Instruction *NewU = U->getAsInstruction(); local
1801 NewU->insertBefore(UI);
1802 UI->replaceUsesOfWith(U, NewU);

Completed in 459 milliseconds