Home
last modified time | relevance | path

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

/external/llvm/lib/Target/NVPTX/
DNVPTXISelLowering.cpp814 SDValue StoreVal; in LowerCall() local
822 StoreVal = OutVals[OIdx++]; in LowerCall()
824 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall()
825 Ops.push_back(StoreVal); in LowerCall()
828 StoreVal = OutVals[OIdx++]; in LowerCall()
830 StoreVal = in LowerCall()
831 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall()
833 StoreVal = DAG.getUNDEF(EltVT); in LowerCall()
835 Ops.push_back(StoreVal); in LowerCall()
840 StoreVal = OutVals[OIdx++]; in LowerCall()
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZSelectionDAGInfo.cpp77 uint64_t StoreVal = ByteVal; in memsetStore() local
79 StoreVal |= ByteVal << (I * 8); in memsetStore()
81 DAG.getConstant(StoreVal, MVT::getIntegerVT(Size * 8)), in memsetStore()
DSystemZISelLowering.cpp2997 unsigned StoreVal = MRI.createVirtualRegister(RC); in emitAtomicCmpSwapW() local
3065 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal) in emitAtomicCmpSwapW()
3068 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp); in emitAtomicCmpSwapW()
/external/llvm/lib/Transforms/Scalar/
DScalarReplAggregates.cpp2261 Constant *StoreVal; in RewriteMemIntrinUserOfAlloca() local
2264 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0> in RewriteMemIntrinUserOfAlloca()
2280 StoreVal = ConstantInt::get(CI->getContext(), TotalVal); in RewriteMemIntrinUserOfAlloca()
2282 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca()
2284 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca()
2285 assert(StoreVal->getType() == ValTy && "Type mismatch!"); in RewriteMemIntrinUserOfAlloca()
2290 StoreVal = ConstantVector::getSplat(NumElts, StoreVal); in RewriteMemIntrinUserOfAlloca()
2293 new StoreInst(StoreVal, EltPtr, MI); in RewriteMemIntrinUserOfAlloca()
/external/llvm/lib/Target/Mips/
DMipsISelLowering.cpp991 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinary() local
1027 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes); in emitAtomicBinary()
1030 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary()
1032 StoreVal = Incr; in emitAtomicBinary()
1034 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0); in emitAtomicBinary()
1101 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local
1199 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicBinaryPartword()
1202 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in emitAtomicBinaryPartword()
1335 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local
1424 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicCmpSwapPartword()
[all …]
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp1648 Value *StoreVal; in TryToShrinkGlobalToBoolean() local
1650 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean()
1664 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean()
1669 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean()
1670 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean()
1673 new StoreInst(StoreVal, NewGV, false, 0, in TryToShrinkGlobalToBoolean()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp3169 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local
3177 if (StoreVal->getType()->isPointerTy()) in EmitARMBuiltinExpr()
3178 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
3180 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitARMBuiltinExpr()
3181 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr()
3188 return Builder.CreateCall2(F, StoreVal, StoreAddr, "strex"); in EmitARMBuiltinExpr()
3898 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local
3906 if (StoreVal->getType()->isPointerTy()) in EmitAArch64BuiltinExpr()
3907 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr()
3909 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitAArch64BuiltinExpr()
[all …]