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 319 /// isTypeLegal - This method returns true if we are running before type
321 bool isTypeLegal(const EVT &VT) {
323 return TLI.isTypeLegal(VT);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 247 /// isTypeLegal - Return true if the target has native support for the
250 bool isTypeLegal(EVT VT) const {
401 return (VT == MVT::Other || isTypeLegal(VT)) &&
409 return (VT == MVT::Other || isTypeLegal(VT)) &&
445 return isTypeLegal(ValVT) && MemVT.isSimple() &&
533 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 177 bool isTypeLegal(Type *Ty, MVT &VT);
755 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
764 return TLI.isTypeLegal(VT);
768 if (isTypeLegal(Ty, VT)) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 140 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
150 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
170 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
699 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
825 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
914 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]

Completed in 1432 milliseconds