HomeSort by relevance Sort by last modified time
    Searched defs:isTypeLegal (Results 1 - 7 of 7) 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 335 /// isTypeLegal - This method returns true if we are running before type
337 bool isTypeLegal(const EVT &VT) {
339 return TLI.isTypeLegal(VT);
    [all...]
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 127 bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
128 return PrevTTI->isTypeLegal(Ty);
488 bool isTypeLegal(Type *Ty) const {
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 82 virtual bool isTypeLegal(Type *Ty) const;
165 bool BasicTTI::isTypeLegal(Type *Ty) const {
167 return getTLI()->isTypeLegal(T);
  /external/llvm/include/llvm/Target/
TargetLowering.h 271 bool isTypeLegal(EVT VT) const {
420 return (VT == MVT::Other || isTypeLegal(VT)) &&
429 return (VT == MVT::Other || isTypeLegal(VT)) &&
438 return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
443 return (VT == MVT::Other || isTypeLegal(VT)) &&
475 return isTypeLegal(ValVT) && MemVT.isSimple() &&
560 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 141 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
151 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
171 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
708 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
856 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
945 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 179 bool isTypeLegal(Type *Ty, MVT &VT);
773 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
782 return TLI.isTypeLegal(VT);
786 if (isTypeLegal(Ty, VT)) return true;
    [all...]

Completed in 187 milliseconds