Searched refs:OldVal (Results 26 - 45 of 45) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp915 AllocaInst *OldVal = NamedValues[VarName]; local
962 if (OldVal)
963 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp826 Value *OldVal = NamedValues[VarName]; local
872 if (OldVal)
873 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp714 Value *OldVal = NamedValues[VarName]; local
760 if (OldVal)
761 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Lex/
H A DLiteralSupport.cpp1044 llvm::APInt OldVal = Val;
1062 OldVal = Val;
1066 OverflowOccurred |= Val.udiv(RadixVal) != OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp809 Value *OldVal = C; local
813 OldVal = IRB.CreateIntToPtr(C, OrigOldValTy);
817 IRB.CreateInsertValue(UndefValue::get(CASI->getType()), OldVal, 0);
H A DInstrProfiling.cpp211 LoadInst *OldVal = Builder.CreateLoad(Ty, Addr, "pgocount.promoted"); variable
212 auto *NewVal = Builder.CreateAdd(OldVal, LiveInValue);
219 LoopToCandidates[TargetLoop].emplace_back(OldVal, NewStore);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLocal.cpp878 /// Select between \p OldVal any value that we know flows from \p BB
882 /// \param OldVal The value we are considering selecting.
888 static Value *selectIncomingValueForBlock(Value *OldVal, BasicBlock *BB,
890 if (!isa<UndefValue>(OldVal)) {
892 IncomingValues.find(BB)->second == OldVal) &&
893 "Expected OldVal to match incoming value from BB!");
895 IncomingValues.insert(std::make_pair(BB, OldVal));
896 return OldVal;
902 return OldVal;
976 Value *OldVal
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp1195 AllocaInst *OldVal = NamedValues[VarName]; local
1239 if (OldVal)
1240 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1273 AllocaInst *OldVal = NamedValues[VarName]; local
1317 if (OldVal)
1318 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp1108 AllocaInst *OldVal = NamedValues[VarName]; local
1155 if (OldVal)
1156 NamedValues[VarName] = OldVal;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h1456 bool OldVal = DisableMacroExpansion; local
1462 DisableMacroExpansion = OldVal;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp2459 LoadInst *OldVal = local
2461 OldVal->setAtomic(AO);
2476 llvm::PHINode *PHI = Builder.CreatePHI(OldVal->getType(), 2);
2477 PHI->addIncoming(OldVal, CurBB);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1545 Register OldVal = MI.getOperand(0).getReg(); local
1548 Register Scratch = RegInfo.createVirtualRegister(RegInfo.getRegClass(OldVal));
1595 .addReg(OldVal, RegState::Define | RegState::EarlyClobber)
1602 RegInfo.createVirtualRegister(RegInfo.getRegClass(OldVal));
1854 Register OldVal = MI.getOperand(2).getReg(); local
1866 Register OldValCopy = MRI.createVirtualRegister(MRI.getRegClass(OldVal));
1870 BuildMI(*BB, II, DL, TII->get(Mips::COPY), OldValCopy).addReg(OldVal);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp7384 Register OldVal = MRI.createVirtualRegister(RC); local
7387 Register RotatedOldVal = (IsSubWord ? MRI.createVirtualRegister(RC) : OldVal);
7404 // %OldVal = phi [ %OrigVal, StartMBB ], [ %Dest, LoopMBB ]
7405 // %RotatedOldVal = RLL %OldVal, 0(%BitShift)
7408 // %Dest = CS %OldVal, %NewVal, Disp(%Base)
7412 BuildMI(MBB, DL, TII->get(SystemZ::PHI), OldVal)
7417 .addReg(OldVal).addReg(BitShift).addImm(0);
7449 .addReg(OldVal)
7502 Register OldVal = MRI.createVirtualRegister(RC); local
7504 Register RotatedOldVal = (IsSubWord ? MRI.createVirtualRegister(RC) : OldVal);
7611 Register OldVal = MRI.createVirtualRegister(RC); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c726 value llvm_replace_all_uses_with(LLVMValueRef OldVal, LLVMValueRef NewVal) { argument
727 LLVMReplaceAllUsesWith(OldVal, NewVal);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp832 auto OldVal = WaterfalledRegMap.find(OldReg); local
833 if (OldVal != WaterfalledRegMap.end()) {
834 Op.setReg(OldVal->second);
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h1710 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp899 void LLVMReplaceAllUsesWith(LLVMValueRef OldVal, LLVMValueRef NewVal) { argument
900 unwrap(OldVal)->replaceAllUsesWith(unwrap(NewVal));
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp3057 Value *OldVal = Builder.CreateAtomicRMW( local
3063 Result = Builder.CreateBinOp(Op, OldVal, Amt);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h11883 void ConvertIntegerToTypeWarnOnOverflow(llvm::APSInt &OldVal,

Completed in 583 milliseconds

12