Searched defs:StoreVal (Results 1 - 7 of 7) sorted by relevance

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

Completed in 590 milliseconds