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

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp 621 EVT InVT = InOp.getValueType();
624 switch (getTypeAction(InVT)) {
850 EVT InVT = N->getOperand(0).getValueType();
852 EVT InNVT = EVT::getVectorVT(*DAG.getContext(), InVT.getVectorElementType()
    [all...]
LegalizeTypesGeneric.cpp 43 EVT InVT = InOp.getValueType();
47 switch (getTypeAction(InVT)) {
78 assert(!(InVT.getVectorNumElements() & 1) && "Unsupported BITCAST");
80 EVT InNVT = EVT::getVectorVT(*DAG.getContext(), InVT.getVectorElementType(),
81 InVT.getVectorNumElements()/2);
94 if (InVT.isVector() && OutVT.isInteger()) {
155 SDValue StackPtr = DAG.CreateStackTemporary(InVT, Alignment);
LegalizeTypes.cpp     [all...]
LegalizeIntegerTypes.cpp 208 EVT InVT = InOp.getValueType();
209 EVT NInVT = TLI.getTypeToTransformTo(*DAG.getContext(), InVT);
214 switch (getTypeAction(InVT)) {
588 EVT InVT = InOp.getValueType();
589 assert(InVT.isVector() && "Cannot split scalar types");
590 unsigned NumElts = InVT.getVectorNumElements();
    [all...]
SelectionDAG.cpp     [all...]
LegalizeTypes.h     [all...]
TargetLowering.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.h 109 bool MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP);
111 bool MergeInTypeInfo(MVT::SimpleValueType InVT, TreePattern &TP) {
112 return MergeInTypeInfo(EEVT::TypeSet(InVT, TP), TP);
CodeGenDAGPatterns.cpp 155 bool EEVT::TypeSet::MergeInTypeInfo(const EEVT::TypeSet &InVT, TreePattern &TP){
156 if (InVT.isCompletelyUnknown() || *this == InVT || TP.hasError())
160 *this = InVT;
164 assert(TypeVec.size() >= 1 && InVT.TypeVec.size() >= 1 && "No unknowns");
171 if (InVT.hasIntegerTypes()) {
172 EEVT::TypeSet InCopy(InVT);
178 TypeVec[0] = InVT.TypeVec[0];
191 if ((InVT.TypeVec[0] == MVT::iPTR || InVT.TypeVec[0] == MVT::iPTRAny) &
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 752 milliseconds