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

/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp1222 SDValue StoreVal; local
1230 StoreVal = OutVals[OIdx++];
1232 StoreVal = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
1233 Ops.push_back(StoreVal);
1236 StoreVal = OutVals[OIdx++];
1238 StoreVal =
1239 DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, StoreVal);
1241 StoreVal = DAG.getUNDEF(EltVT);
1243 Ops.push_back(StoreVal);
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp68 uint64_t StoreVal = ByteVal; local
70 StoreVal |= ByteVal << (I * 8);
72 DAG.getConstant(StoreVal, DL,
H A DSystemZISelLowering.cpp5572 unsigned StoreVal = MRI.createVirtualRegister(RC);
5632 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
5634 // %RetryOldVal = CS %Dest, %StoreVal, Disp(%Base)
5640 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
5643 .addReg(OldVal).addReg(StoreVal).addOperand(Base).addImm(Disp);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DScalarReplAggregates.cpp2121 Constant *StoreVal; local
2124 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
2140 StoreVal = ConstantInt::get(CI->getContext(), TotalVal);
2142 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
2144 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
2145 assert(StoreVal->getType() == ValTy && "Type mismatch!");
2150 SmallVector<Constant*, 16> Elts(NumElts, StoreVal);
2151 StoreVal
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
H A DMipsISelLowering.cpp890 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
927 BuildMI(BB, dl, TII->get(Mips::NOR), StoreVal)
931 BuildMI(BB, dl, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
933 StoreVal = Incr;
936 .addReg(StoreVal).addReg(Ptr).addImm(0);
976 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1070 BuildMI(BB, dl, TII->get(Mips::OR), StoreVal)
1073 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);
1198 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1282 BuildMI(BB, dl, TII->get(Mips::OR), StoreVal)
[all...]
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1600 Value *StoreVal; local
1602 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1616 StoreVal = new LoadInst(NewGV, LI->getName()+".b", false, 0,
1621 StoreVal = StoredVal->getOperand(0);
1622 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1625 new StoreInst(StoreVal, NewGV, false, 0,
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1657 Value *StoreVal; local
1659 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1673 StoreVal = new LoadInst(NewGV, LI->getName()+".b", LI);
1677 StoreVal = StoredVal->getOperand(0);
1678 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1681 new StoreInst(StoreVal, NewGV, SI);
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp1146 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1181 BuildMI(BB, DL, TII->get(NOR), StoreVal).addReg(ZERO).addReg(AndRes);
1184 BuildMI(BB, DL, TII->get(BinOpcode), StoreVal).addReg(OldVal).addReg(Incr);
1186 StoreVal = Incr;
1188 BuildMI(BB, DL, TII->get(SC), Success).addReg(StoreVal).addReg(Ptr).addImm(0);
1258 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1367 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
1370 .addReg(StoreVal).addReg(AlignedAddr).addImm(0);
1514 unsigned StoreVal = RegInfo.createVirtualRegister(RC); local
1615 BuildMI(BB, DL, TII->get(Mips::OR), StoreVal)
[all...]
/external/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp1249 Operand *StoreVal = nullptr; local
1254 StoreVal = LocalStoreVal;
1256 StoreVal = Val;
1260 Control()->appendInst(InstStore::create(Func, StoreVal, RealAddr));
/external/clang/lib/CodeGen/
H A DCGBuiltin.cpp4164 Value *StoreVal = EmitScalarExpr(E->getArg(0)); local
4172 if (StoreVal->getType()->isPointerTy())
4173 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
4175 StoreVal = Builder.CreateBitCast(StoreVal, StoreTy);
4176 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
4183 return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex");
4931 Value *StoreVal local
[all...]

Completed in 542 milliseconds