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

/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1196 SDValue StoreVal; local
1204 StoreVal = OutVals[OIdx++];
1206 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
1207 Ops.push_back(StoreVal);
1210 StoreVal = OutVals[OIdx++];
1212 StoreVal =
1213 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
1215 StoreVal = DAG.getUNDEF(EltVT);
1217 Ops.push_back(StoreVal);
2362 SDValue StoreVal = OutVals[0]; local
2410 SDValue StoreVal; local
[all...]
/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.cpp3293 unsigned StoreVal = MRI.createVirtualRegister(RC); local
3353 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
3355 // %RetryOldVal = CS %Dest, %StoreVal, Disp(%Base)
3361 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
3364 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp);
/external/llvm/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2284 Constant *StoreVal; local
2287 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
2303 StoreVal = ConstantInt::get(CI->getContext(), TotalVal);
2305 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2307 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2308 assert(StoreVal->getType() == ValTy && "Type mismatch!");
2313 StoreVal = ConstantVector::getSplat(NumElts, StoreVal);
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1062 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1098 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes);
1101 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1103 StoreVal = Incr;
1105 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0);
1172 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1271 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
1275 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);
1408 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1498 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
[all...]
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp3411 Value *StoreVal = EmitScalarExpr(E->getArg(0)); local
3419 if (StoreVal->getType()->isPointerTy())
3420 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
3422 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy);
3423 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
3430 return Builder.CreateCall2(F, StoreVal, StoreAddr, "strex");
4183 Value *StoreVal local
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1643 Value *StoreVal; local
1645 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1659 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1664 StoreVal = StoredVal->getOperand(0);
1665 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1668 new StoreInst(StoreVal, NewGV, false, 0,

Completed in 214 milliseconds