HomeSort by relevance Sort by last modified time
    Searched defs:isTypeLegal (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 71 /// isTypeLegal - Return true if this type is legal on this target.
72 bool isTypeLegal(EVT VT) const {
    [all...]
DAGCombiner.cpp 296 /// isTypeLegal - This method returns true if we are running before type
298 bool isTypeLegal(const EVT &VT) {
300 return TLI.isTypeLegal(VT);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 227 /// isTypeLegal - Return true if the target has native support for the
230 bool isTypeLegal(EVT VT) const {
381 return (VT == MVT::Other || isTypeLegal(VT)) &&
389 return (VT == MVT::Other || isTypeLegal(VT)) &&
425 return isTypeLegal(ValVT) && MemVT.isSimple() &&
513 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 174 bool isTypeLegal(Type *Ty, MVT &VT);
685 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
694 return TLI.isTypeLegal(VT);
698 if (isTypeLegal(Ty, VT)) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 138 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
148 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
168 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
697 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
823 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
912 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]

Completed in 363 milliseconds