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

/freebsd-9.3-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp689 SDValue StoreVal; local
697 StoreVal = OutVals[OIdx++];
699 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
700 Ops.push_back(StoreVal);
703 StoreVal = OutVals[OIdx++];
705 StoreVal =
706 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
708 StoreVal = DAG.getUNDEF(EltVT);
710 Ops.push_back(StoreVal);
1724 SDValue StoreVal = OutVals[0]; local
1772 SDValue StoreVal; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp78 uint64_t StoreVal = ByteVal; local
80 StoreVal |= ByteVal << (I * 8);
82 DAG.getConstant(StoreVal, MVT::getIntegerVT(Size * 8)),
H A DSystemZISelLowering.cpp2660 unsigned StoreVal = MRI.createVirtualRegister(RC); local
2720 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
2722 // %RetryOldVal = CS %Dest, %StoreVal, Disp(%Base)
2728 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
2731 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp);
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2264 Constant *StoreVal; local
2267 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
2283 StoreVal = ConstantInt::get(CI->getContext(), TotalVal);
2285 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2287 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2288 assert(StoreVal->getType() == ValTy && "Type mismatch!");
2293 StoreVal = ConstantVector::getSplat(NumElts, StoreVal);
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp908 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
944 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes);
947 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
949 StoreVal = Incr;
951 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0);
990 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1089 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
1092 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);
1230 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1320 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1653 Value *StoreVal; local
1655 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1669 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1674 StoreVal = StoredVal->getOperand(0);
1675 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1678 new StoreInst(StoreVal, NewGV, false, 0,
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGBuiltin.cpp4000 Value *StoreVal = EmitScalarExpr(E->getArg(0)); local
4008 if (StoreVal->getType()->isPointerTy())
4009 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
4011 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy);
4012 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
4016 return Builder.CreateCall2(F, StoreVal, StoreAddr, "strex");

Completed in 104 milliseconds