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

  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.h 70 /// isTypeLegal - Return true if this type is legal on this target.
71 bool isTypeLegal(EVT VT) const {
    [all...]
DAGCombiner.cpp 377 /// isTypeLegal - This method returns true if we are running before type
379 bool isTypeLegal(const EVT &VT) {
381 return TLI.isTypeLegal(VT);
    [all...]
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 123 bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
124 return PrevTTI->isTypeLegal(Ty);
514 bool isTypeLegal(Type *Ty) const override {
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 88 bool isTypeLegal(Type *Ty) const override;
174 bool BasicTTI::isTypeLegal(Type *Ty) const {
176 return getTLI()->isTypeLegal(T);
197 return TLI->isTypeLegal(VT) && TLI->isOperationLegalOrCustom(ISD::FSQRT, VT);
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 80 bool isTypeLegal(Type *Ty, MVT &VT);
119 bool MipsFastISel::isTypeLegal(Type *Ty, MVT &VT) {
128 return TLI.isTypeLegal(VT);
132 if (isTypeLegal(Ty, VT))
  /external/llvm/include/llvm/Target/
TargetLowering.h 341 bool isTypeLegal(EVT VT) const {
490 return (VT == MVT::Other || isTypeLegal(VT)) &&
499 return (VT == MVT::Other || isTypeLegal(VT)) &&
508 return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
513 return (VT == MVT::Other || isTypeLegal(VT)) &&
545 return isTypeLegal(ValVT) && MemVT.isSimple() &&
629 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 113 bool isTypeLegal(Type *Ty, MVT &VT);
414 bool AArch64FastISel::isTypeLegal(Type *Ty, MVT &VT) {
428 return TLI.isTypeLegal(VT);
432 if (isTypeLegal(Ty, VT))
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 54 // Consider factoring isTypeLegal into the base class.
141 bool isTypeLegal(Type *Ty, MVT &VT);
255 bool PPCFastISel::isTypeLegal(Type *Ty, MVT &VT) {
264 return TLI.isTypeLegal(VT);
270 if (isTypeLegal(Ty, VT)) return true;
920 if (!isTypeLegal(DstTy, DstVT))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 169 bool isTypeLegal(Type *Ty, MVT &VT);
729 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
738 return TLI.isTypeLegal(VT);
742 if (isTypeLegal(Ty, VT)) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 154 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
296 if (!isTypeLegal(RetTy, RetVT))
336 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
356 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
    [all...]

Completed in 133 milliseconds