Searched refs:NewR (Results 1 - 11 of 11) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DValueLattice.h342 /// Mark the object as constant range with \p NewR. If the object is already a
344 /// NewR and the tag. Otherwise \p NewR must be a superset of the existing
348 bool markConstantRange(ConstantRange NewR, argument
350 assert(!NewR.isEmptySet() && "should only be called for non-empty sets");
352 if (NewR.isFullSet())
362 if (getConstantRange() == NewR)
370 assert(NewR.contains(getConstantRange()) &&
371 "Existing range must be a subset of NewR");
372 Range = std::move(NewR);
443 ConstantRange NewR = getConstantRange().unionWith(RHS.getConstantRange()); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonBitSimplify.cpp209 static bool replaceReg(Register OldR, Register NewR,
213 static bool replaceRegWithSub(Register OldR, Register NewR, unsigned NewSR,
215 static bool replaceSubWithSub(Register OldR, unsigned OldSR, Register NewR,
355 bool HexagonBitSimplify::replaceReg(Register OldR, Register NewR,
357 if (!OldR.isVirtual() || !NewR.isVirtual())
363 I->setReg(NewR);
368 bool HexagonBitSimplify::replaceRegWithSub(Register OldR, Register NewR,
371 if (!OldR.isVirtual() || !NewR.isVirtual())
379 I->setReg(NewR);
386 Register NewR, unsigne
[all...]
H A DHexagonConstPropagation.cpp2868 // NewR = const
2869 // and replace all uses of the defined register with NewR.
2892 Register NewR = MRI->createVirtualRegister(PredRC); local
2893 const MachineInstrBuilder &MIB = BuildMI(B, At, DL, *NewD, NewR);
2898 replaceAllRegUsesWith(R, NewR);
2914 Register NewR = MRI->createVirtualRegister(NewRC); local
2919 NewMI = BuildMI(B, At, DL, *NewD, NewR)
2924 NewMI = BuildMI(B, At, DL, *NewD, NewR)
2931 NewMI = BuildMI(B, At, DL, *NewD, NewR)
2937 NewMI = BuildMI(B, At, DL, *NewD, NewR)
2999 unsigned NewR = R1.Reg; local
3032 Register NewR = MRI->createVirtualRegister(RC); local
3066 unsigned NewR = SR.Reg; local
3098 unsigned NewR = SR.Reg; local
[all...]
H A DHexagonEarlyIfConv.cpp994 unsigned NewR = UseR; local
1001 NewR = MRI->createVirtualRegister(RC);
1002 NonPHI = BuildMI(*B, NonPHI, DL, HII->get(TargetOpcode::COPY), NewR)
1005 MRI->replaceRegWith(DefR, NewR);
H A DHexagonHardwareLoops.cpp1588 Register NewR = MRI->createVirtualRegister(RC); local
1591 BuildMI(B, DI, DL, TII->get(DI->getOpcode()), NewR).addImm(Val);
1592 MO.setReg(NewR);
H A DHexagonGenInsert.cpp1414 unsigned NewR = RegMap[I->first];
1415 bool R32 = MRI->getRegClass(NewR) == &Hexagon::IntRegsRegClass;
1434 BuildMI(B, At, DL, D, NewR)
H A DHexagonSplitDouble.cpp673 Register NewR = MRI->createVirtualRegister(RC); local
675 BuildMI(B, MI, DL, TII->get(Hexagon::A2_addi), NewR)
678 MRI->replaceRegWith(UpdOp.getReg(), NewR);
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1266 const MemRegion *NewR, SVal V,
1268 if (NewR->canPrintPretty()) {
1269 NewR->printPretty(os);
1275 if (NewR->isBoundable()) {
1276 if (const auto *TR = dyn_cast<TypedValueRegion>(NewR)) {
1293 if (isa<VarRegion>(NewR)) {
1296 os << (NewR->canPrintPretty() ? "initialized" : "Initializing")
1299 os << (NewR->canPrintPretty() ? "declared" : "Declaring")
1304 os << (NewR->canPrintPretty() ? "initialized" : "Initialized") << " here";
1343 const MemRegion *NewR, SVa
1265 showBRDiagnostics(const char *action, llvm::raw_svector_ostream &os, const MemRegion *NewR, SVal V, const MemRegion *OldR, const DeclStmt *DS) argument
1342 showBRDefaultDiagnostics(llvm::raw_svector_ostream &os, const MemRegion *NewR, SVal V, const MemRegion *OldR) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Core/
H A DReplacement.cpp206 Replacement NewR(
209 Prev = NewR;
280 Replacement NewR(
284 Replaces.insert(std::move(NewR));
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp284 Replacement NewR(R.getFilePath(), NewOffset, 0, Text);
285 Replaces = Replaces.merge(Replacements(NewR));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DCore.cpp370 auto NewR = R->delegate(ResponsibilitySymbols); local
371 if (!NewR) {
372 ES.reportError(NewR.takeError());
377 auto QueryInfo = std::make_shared<OnResolveInfo>(std::move(*NewR),

Completed in 297 milliseconds