Searched refs:StoreVal (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 2272 Constant *StoreVal; in RewriteMemIntrinUserOfAlloca() local 2275 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0> in RewriteMemIntrinUserOfAlloca() 2291 StoreVal = ConstantInt::get(CI->getContext(), TotalVal); in RewriteMemIntrinUserOfAlloca() 2293 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2295 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2296 assert(StoreVal->getType() == ValTy && "Type mismatch!"); in RewriteMemIntrinUserOfAlloca() 2301 StoreVal = ConstantVector::getSplat(NumElts, StoreVal); in RewriteMemIntrinUserOfAlloca() 2304 new StoreInst(StoreVal, EltPtr, MI); in RewriteMemIntrinUserOfAlloca()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1102 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinary() local 1139 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes); in emitAtomicBinary() 1142 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary() 1144 StoreVal = Incr; in emitAtomicBinary() 1146 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0); in emitAtomicBinary() 1187 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local 1279 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicBinaryPartword() 1282 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in emitAtomicBinaryPartword() 1424 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local 1507 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicCmpSwapPartword() [all …]
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1848 Value *StoreVal; in TryToShrinkGlobalToBoolean() local 1850 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean() 1864 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean() 1869 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean() 1870 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean() 1873 new StoreInst(StoreVal, NewGV, false, 0, in TryToShrinkGlobalToBoolean()
|