HomeSort by: relevance | last modified time | path
    Searched refs:StoreVal (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 67 uint64_t StoreVal = ByteVal;
69 StoreVal |= ByteVal << (I * 8);
71 Chain, DL, DAG.getConstant(StoreVal, DL, MVT::getIntegerVT(Size * 8)),
SystemZISelLowering.cpp 7613 Register StoreVal = MRI.createVirtualRegister(RC);
7670 // %StoreVal = RLL %RetrySwapVal, -BitSize(%NegBitShift)
7672 // %RetryOldVal = CS %OldVal, %StoreVal, Disp(%Base)
7676 BuildMI(MBB, DL, TII->get(SystemZ::RLL), StoreVal)
7680 .addReg(StoreVal)
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsExpandPseudo.cpp 418 Register StoreVal = I->getOperand(8).getReg();
529 // and StoreVal, OlddVal, Mask2
530 // or StoreVal, StoreVal, BinOpRes
531 // StoreVal<tied1> = sc StoreVal, 0(Ptr)
532 // beq StoreVal, zero, loopMBB
533 BuildMI(loopMBB, DL, TII->get(Mips::AND), StoreVal)
535 BuildMI(loopMBB, DL, TII->get(Mips::OR), StoreVal)
536 .addReg(StoreVal).addReg(BinOpRes)
    [all...]
MipsISelLowering.cpp 4871 Register StoreVal = MI.getOperand(0).getReg();
4881 BuildMI(*BB, I, DL, TII->get(Mips::COPY)).addDef(BitcastW).addUse(StoreVal);
4896 .addUse(StoreVal)
4921 Register StoreVal = MI.getOperand(0).getReg();
4934 .addUse(StoreVal);
4949 .addUse(StoreVal);
4973 BuildMI(*BB, I, DL, TII->get(Mips::COPY)).addDef(Bitcast).addUse(StoreVal);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LowerMatrixIntrinsics.cpp 871 /// Stores a sub-matrix \p StoreVal into the \p R x \p C matrix starting at \p
873 void storeMatrix(const MatrixTy &StoreVal, Value *MatrixPtr,
883 auto *TileTy = FixedVectorType::get(EltTy, StoreVal.getNumRows() *
884 StoreVal.getNumColumns());
889 storeMatrix(TileTy, StoreVal, TilePtr, MAlign,
893 /// Store matrix \p StoreVal starting at \p Ptr and using \p Stride between
895 MatrixTy storeMatrix(Type *Ty, MatrixTy StoreVal, Value *Ptr,
900 for (auto Vec : enumerate(StoreVal.vectors())) {
902 Stride, StoreVal.getStride(),
910 return MatrixTy().addNumStores(getNumOps(StoreVal.getVectorTy())
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
LiteralSupport.h 121 bool GetFixedPointValue(llvm::APInt &StoreVal, unsigned Scale);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
GlobalOpt.cpp 1227 Value *StoreVal;
1229 StoreVal = ConstantInt::get(Type::getInt1Ty(GV->getContext()),
1243 StoreVal = new LoadInst(NewGV->getValueType(), NewGV,
1249 StoreVal = StoredVal->getOperand(0);
1250 assert(isa<LoadInst>(StoreVal) && "Not a load of NewGV!");
1254 new StoreInst(StoreVal, NewGV, false, Align(1), SI->getOrdering(),
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVISelDAGToDAG.cpp 307 SDValue StoreVal = createTuple(*CurDAG, Regs, NF, LMUL);
310 Operands.push_back(StoreVal);
337 SDValue StoreVal = createTuple(*CurDAG, Regs, NF, LMUL);
340 Operands.push_back(StoreVal);
RISCVISelLowering.cpp 4072 SDValue StoreVal = Store->getValue();
4073 MVT VT = StoreVal.getSimpleValueType();
4078 StoreVal = DAG.getNode(ISD::INSERT_SUBVECTOR, DL, VT,
4079 DAG.getConstant(0, DL, VT), StoreVal,
4089 convertToScalableVector(ContainerVT, StoreVal, DAG, Subtarget);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 7488 Value *StoreVal = EmitScalarExpr(E->getArg(0));
7496 if (StoreVal->getType()->isPointerTy())
7497 StoreVal = Builder.CreatePtrToInt(StoreVal, Int32Ty);
7501 CGM.getDataLayout().getTypeSizeInBits(StoreVal->getType()));
7502 StoreVal = Builder.CreateBitCast(StoreVal, IntTy);
7503 StoreVal = Builder.CreateZExtOrBitCast(StoreVal, Int32Ty);
7510 return Builder.CreateCall(F, {StoreVal, StoreAddr}, "strex")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 649 StoreSource getStoreSource(SDValue StoreVal) {
650 switch (StoreVal.getOpcode()) {
9670 SDValue StoreVal = MSC->getValue();
9679 SDValue Ops[] = {Chain, StoreVal, Mask, BasePtr, Index, Scale};
9681 DAG.getVTList(MVT::Other), StoreVal.getValueType(), DL, Ops,
9686 SDValue Ops[] = {Chain, StoreVal, Mask, BasePtr, Index, Scale};
9688 DAG.getVTList(MVT::Other), StoreVal.getValueType(), DL, Ops,
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 4294 SDValue StoreVal = MSC->getValue();
4307 EVT VT = StoreVal.getSimpleValueType();
4319 StoreVal = getSVESafeBitCast(StoreValVT, StoreVal, DAG);
4330 SDValue Ops[] = {Chain, StoreVal, Mask, BasePtr, Index, InputVT};

Completed in 82 milliseconds