HomeSort by relevance Sort by last modified time
    Searched refs:DstVT (Results 1 - 10 of 10) sorted by null

  /external/llvm/lib/Target/SystemZ/
SystemZSelectionDAGInfo.cpp 68 EVT DstVT = Dst.getValueType();
92 Dst = DAG.getNode(ISD::ADD, DL, DstVT, Dst,
93 DAG.getConstant(Size1, DstVT));
106 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, DstVT, Dst,
107 DAG.getConstant(1, DstVT));
120 SDValue Dst2 = DAG.getNode(ISD::ADD, DL, DstVT, Dst,
121 DAG.getConstant(1, DstVT));
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 254 EVT DstVT = Dst.getValueType();
258 DAG.getNode(ISD::ADD, dl, DstVT, Dst,
259 DAG.getConstant(Offset, DstVT)),
X86FastISel.cpp 87 bool X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT, unsigned Src, EVT SrcVT,
333 /// type SrcVT to type DstVT using the specified extension opcode Opc (e.g.
335 bool X86FastISel::X86FastEmitExtend(ISD::NodeType Opc, EVT DstVT,
338 unsigned RR = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Opc,
789 EVT DstVT = VA.getValVT();
791 if (SrcVT != DstVT) {
798 assert(DstVT == MVT::i32 && "X86 should always ext to i32");
808 SrcReg = FastEmit_r(SrcVT.getSimpleVT(), DstVT.getSimpleVT(), Op,
    [all...]
X86ISelDAGToDAG.cpp 495 EVT DstVT = N->getValueType(0);
498 if (SrcVT.isVector() || DstVT.isVector())
506 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
524 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
526 MemVT = SrcIsSSE ? SrcVT : DstVT;
536 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 736 EVT DstVT = TLI.getValueType(I->getType());
739 DstVT == MVT::Other || !DstVT.isSimple())
744 if (!TLI.isTypeLegal(DstVT))
759 DstVT.getSimpleVT(),
788 MVT DstVT = DstEVT.getSimpleVT();
798 if (SrcVT == DstVT) {
800 const TargetRegisterClass* DstClass = TLI.getRegClassFor(DstVT);
811 ResultReg = FastEmit_r(SrcVT, DstVT, ISD::BITCAST, Op0, Op0IsKill);
    [all...]
LegalizeIntegerTypes.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 465 EVT DstVT = TLI.getValueType(CI->getType());
468 if (SrcVT.isInteger() != DstVT.isInteger())
473 if (SrcVT.bitsLT(DstVT)) return false;
481 if (TLI.getTypeAction(CI->getContext(), DstVT) ==
483 DstVT = TLI.getTypeToTransformTo(CI->getContext(), DstVT);
486 if (SrcVT != DstVT)
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp     [all...]
ARMISelLowering.cpp     [all...]

Completed in 851 milliseconds