/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelLowering.cpp | 1222 SDValue StoreVal; in LowerCall() local 1230 StoreVal = OutVals[OIdx++]; in LowerCall() 1232 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall() 1233 Ops.push_back(StoreVal); in LowerCall() 1236 StoreVal = OutVals[OIdx++]; in LowerCall() 1238 StoreVal = in LowerCall() 1239 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal); in LowerCall() 1241 StoreVal = DAG.getUNDEF(EltVT); in LowerCall() 1243 Ops.push_back(StoreVal); in LowerCall() 1248 StoreVal = OutVals[OIdx++]; in LowerCall() [all …]
|
/external/llvm/lib/Target/SystemZ/ |
D | SystemZSelectionDAGInfo.cpp | 68 uint64_t StoreVal = ByteVal; in memsetStore() local 70 StoreVal |= ByteVal << (I * 8); in memsetStore() 72 DAG.getConstant(StoreVal, DL, in memsetStore()
|
D | SystemZISelLowering.cpp | 5572 unsigned StoreVal = MRI.createVirtualRegister(RC); in emitAtomicCmpSwapW() local 5640 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal) in emitAtomicCmpSwapW() 5643 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp); in emitAtomicCmpSwapW()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/ |
D | ScalarReplAggregates.cpp | 2121 Constant *StoreVal; in RewriteMemIntrinUserOfAlloca() local 2124 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0> in RewriteMemIntrinUserOfAlloca() 2140 StoreVal = ConstantInt::get(CI->getContext(), TotalVal); in RewriteMemIntrinUserOfAlloca() 2142 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2144 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy); in RewriteMemIntrinUserOfAlloca() 2145 assert(StoreVal->getType() == ValTy && "Type mismatch!"); in RewriteMemIntrinUserOfAlloca() 2150 SmallVector<Constant*, 16> Elts(NumElts, StoreVal); in RewriteMemIntrinUserOfAlloca() 2151 StoreVal = ConstantVector::get(Elts); in RewriteMemIntrinUserOfAlloca() 2154 new StoreInst(StoreVal, EltPtr, MI); in RewriteMemIntrinUserOfAlloca()
|
/external/swiftshader/third_party/LLVM/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 890 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in EmitAtomicBinary() local 927 BuildMI(BB, dl, TII->get(Mips::NOR), StoreVal) in EmitAtomicBinary() 931 BuildMI(BB, dl, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in EmitAtomicBinary() 933 StoreVal = Incr; in EmitAtomicBinary() 936 .addReg(StoreVal).addReg(Ptr).addImm(0); in EmitAtomicBinary() 976 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in EmitAtomicBinaryPartword() local 1070 BuildMI(BB, dl, TII->get(Mips::OR), StoreVal) in EmitAtomicBinaryPartword() 1073 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in EmitAtomicBinaryPartword() 1198 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in EmitAtomicCmpSwapPartword() local 1282 BuildMI(BB, dl, TII->get(Mips::OR), StoreVal) in EmitAtomicCmpSwapPartword() [all …]
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1600 Value *StoreVal; in TryToShrinkGlobalToBoolean() local 1602 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean() 1616 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0, in TryToShrinkGlobalToBoolean() 1621 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean() 1622 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean() 1625 new StoreInst(StoreVal, NewGV, false, 0, in TryToShrinkGlobalToBoolean()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 1657 Value *StoreVal; in TryToShrinkGlobalToBoolean() local 1659 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()), in TryToShrinkGlobalToBoolean() 1673 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI); in TryToShrinkGlobalToBoolean() 1677 StoreVal = StoredVal->getOperand(0); in TryToShrinkGlobalToBoolean() 1678 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!"); in TryToShrinkGlobalToBoolean() 1681 new StoreInst(StoreVal, NewGV, SI); in TryToShrinkGlobalToBoolean()
|
/external/llvm/lib/Target/Mips/ |
D | MipsISelLowering.cpp | 1146 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinary() local 1181 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes); in emitAtomicBinary() 1184 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr); in emitAtomicBinary() 1186 StoreVal = Incr; in emitAtomicBinary() 1188 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0); in emitAtomicBinary() 1258 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicBinaryPartword() local 1367 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicBinaryPartword() 1370 .addReg(StoreVal).addReg(AlignedAddr).addImm(0); in emitAtomicBinaryPartword() 1514 unsigned StoreVal = RegInfo.createVirtualRegister(RC); in emitAtomicCmpSwapPartword() local 1615 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal) in emitAtomicCmpSwapPartword() [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 1249 Operand *StoreVal = nullptr; in StoreMem() local 1254 StoreVal = LocalStoreVal; in StoreMem() 1256 StoreVal = Val; in StoreMem() 1260 Control()->appendInst(InstStore::create(Func, StoreVal, RealAddr)); in StoreMem()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 4164 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitARMBuiltinExpr() local 4172 if (StoreVal->getType()->isPointerTy()) in EmitARMBuiltinExpr() 4173 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty); in EmitARMBuiltinExpr() 4175 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitARMBuiltinExpr() 4176 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty); in EmitARMBuiltinExpr() 4183 return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex"); in EmitARMBuiltinExpr() 4931 Value *StoreVal = EmitScalarExpr(E->getArg(0)); in EmitAArch64BuiltinExpr() local 4939 if (StoreVal->getType()->isPointerTy()) in EmitAArch64BuiltinExpr() 4940 StoreVal = Builder.CreatePtrToInt(StoreVal, Int64Ty); in EmitAArch64BuiltinExpr() 4942 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy); in EmitAArch64BuiltinExpr() [all …]
|