Home
last modified time | relevance | path

Searched refs:StoreVal (Results 1 – 7 of 7) sorted by relevance

/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp1220 SDValue StoreVal; in LowerCall() local
1228 StoreVal = OutVals[OIdx++]; in LowerCall()
1230 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall()
1231 Ops.push_back(StoreVal); in LowerCall()
1234 StoreVal = OutVals[OIdx++]; in LowerCall()
1236 StoreVal = in LowerCall()
1237 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall()
1239 StoreVal = DAG.getUNDEF(EltVT); in LowerCall()
1241 Ops.push_back(StoreVal); in LowerCall()
1246 StoreVal = OutVals[OIdx++]; in LowerCall()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp71 uint64_t StoreVal = ByteVal; in memsetStore() local
73 StoreVal |= ByteVal << (I * 8); in memsetStore()
75 DAG.getConstant(StoreVal, DL, in memsetStore()
DSystemZISelLowering.cpp5249 unsigned StoreVal = MRI.createVirtualRegister(RC); in emitAtomicCmpSwapW() local
5317 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal) in emitAtomicCmpSwapW()
5320 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp); in emitAtomicCmpSwapW()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp2285 Constant *StoreVal; in RewriteMemIntrinUserOfAlloca() local
2288 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0> in RewriteMemIntrinUserOfAlloca()
2304 StoreVal = ConstantInt::get(CI->getContext(), TotalVal); in RewriteMemIntrinUserOfAlloca()
2306 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca()
2308 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca()
2309 assert(StoreVal->getType() == ValTy && "Type mismatch!"); in RewriteMemIntrinUserOfAlloca()
2314 StoreVal = ConstantVector::getSplat(NumElts, StoreVal); in RewriteMemIntrinUserOfAlloca()
2317 new StoreInst(StoreVal, EltPtr, MI); in RewriteMemIntrinUserOfAlloca()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp1093 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinary() local
1128 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes); in emitAtomicBinary()
1131 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary()
1133 StoreVal = Incr; in emitAtomicBinary()
1135 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0); in emitAtomicBinary()
1202 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local
1300 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicBinaryPartword()
1304 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in emitAtomicBinaryPartword()
1441 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local
1530 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicCmpSwapPartword()
[all …]
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1643 Value *StoreVal; in TryToShrinkGlobalToBoolean() local
1645 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean()
1659 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean()
1664 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean()
1665 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean()
1668 new StoreInst(StoreVal, NewGV, false, 0, in TryToShrinkGlobalToBoolean()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp3687 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local
3695 if (StoreVal->getType()->isPointerTy()) in EmitARMBuiltinExpr()
3696 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
3698 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitARMBuiltinExpr()
3699 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
3706 return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex"); in EmitARMBuiltinExpr()
4454 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local
4462 if (StoreVal->getType()->isPointerTy()) in EmitAArch64BuiltinExpr()
4463 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr()
4465 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitAArch64BuiltinExpr()
[all …]