| /NextBSD/contrib/llvm/lib/Target/NVPTX/ |
| HD | NVPTXISelLowering.cpp | 1215 SDValue StoreVal; in LowerCall() local 1223 StoreVal = OutVals[OIdx++]; in LowerCall() 1225 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall() 1226 Ops.push_back(StoreVal); in LowerCall() 1229 StoreVal = OutVals[OIdx++]; in LowerCall() 1231 StoreVal = in LowerCall() 1232 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall() 1234 StoreVal = DAG.getUNDEF(EltVT); in LowerCall() 1236 Ops.push_back(StoreVal); in LowerCall() 1241 StoreVal = OutVals[OIdx++]; in LowerCall() [all …]
|
| /NextBSD/contrib/llvm/lib/Target/SystemZ/ |
| HD | SystemZSelectionDAGInfo.cpp | 71 uint64_t StoreVal = ByteVal; in memsetStore() local 73 StoreVal |= ByteVal << (I * 8); in memsetStore() 75 DAG.getConstant(StoreVal, DL, in memsetStore()
|
| HD | SystemZISelLowering.cpp | 5216 unsigned StoreVal = MRI.createVirtualRegister(RC); in emitAtomicCmpSwapW() local 5284 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal) in emitAtomicCmpSwapW() 5287 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp); in emitAtomicCmpSwapW()
|
| /NextBSD/contrib/llvm/lib/Transforms/Scalar/ |
| HD | ScalarReplAggregates.cpp | 2284 Constant *StoreVal; in RewriteMemIntrinUserOfAlloca() local 2287 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0> in RewriteMemIntrinUserOfAlloca() 2303 StoreVal = ConstantInt::get(CI->getContext(), TotalVal); in RewriteMemIntrinUserOfAlloca() 2305 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2307 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2308 assert(StoreVal->getType() == ValTy && "Type mismatch!"); in RewriteMemIntrinUserOfAlloca() 2313 StoreVal = ConstantVector::getSplat(NumElts, StoreVal); in RewriteMemIntrinUserOfAlloca() 2316 new StoreInst(StoreVal, EltPtr, MI); in RewriteMemIntrinUserOfAlloca()
|
| /NextBSD/contrib/llvm/lib/Transforms/IPO/ |
| HD | GlobalOpt.cpp | 1641 Value *StoreVal; in TryToShrinkGlobalToBoolean() local 1643 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean() 1657 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean() 1662 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean() 1663 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean() 1666 new StoreInst(StoreVal, NewGV, false, 0, in TryToShrinkGlobalToBoolean()
|
| /NextBSD/contrib/llvm/lib/Target/Mips/ |
| HD | MipsISelLowering.cpp | 1087 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinary() local 1123 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes); in emitAtomicBinary() 1126 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary() 1128 StoreVal = Incr; in emitAtomicBinary() 1130 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0); in emitAtomicBinary() 1197 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local 1296 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicBinaryPartword() 1300 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in emitAtomicBinaryPartword() 1433 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local 1523 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicCmpSwapPartword() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGBuiltin.cpp | 3522 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local 3530 if (StoreVal->getType()->isPointerTy()) in EmitARMBuiltinExpr() 3531 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty); in EmitARMBuiltinExpr() 3533 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitARMBuiltinExpr() 3534 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr() 3541 return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex"); in EmitARMBuiltinExpr() 4318 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local 4326 if (StoreVal->getType()->isPointerTy()) in EmitAArch64BuiltinExpr() 4327 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr() 4329 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitAArch64BuiltinExpr() [all …]
|