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 332 /// isTypeLegal - This method returns true if we are running before type
334 bool isTypeLegal(const EVT &VT) {
336 return TLI.isTypeLegal(VT);
    [all...]
  /external/llvm/lib/Analysis/
TargetTransformInfo.cpp 115 bool TargetTransformInfo::isTypeLegal(Type *Ty) const {
116 return PrevTTI->isTypeLegal(Ty);
462 bool isTypeLegal(Type *Ty) const {
  /external/llvm/lib/CodeGen/
BasicTargetTransformInfo.cpp 75 virtual bool isTypeLegal(Type *Ty) const;
144 bool BasicTTI::isTypeLegal(Type *Ty) const {
146 return TLI->isTypeLegal(T);
  /external/llvm/include/llvm/Target/
TargetLowering.h 253 /// isTypeLegal - Return true if the target has native support for the
256 bool isTypeLegal(EVT VT) const {
407 return (VT == MVT::Other || isTypeLegal(VT)) &&
416 return (VT == MVT::Other || isTypeLegal(VT)) &&
425 return (!isTypeLegal(VT) || getOperationAction(Op, VT) == Expand);
431 return (VT == MVT::Other || isTypeLegal(VT)) &&
466 return isTypeLegal(ValVT) && MemVT.isSimple() &&
556 } while (!isTypeLegal(NVT) ||
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 178 bool isTypeLegal(Type *Ty, MVT &VT);
767 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
776 return TLI.isTypeLegal(VT);
780 if (isTypeLegal(Ty, VT)) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 142 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
152 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
172 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
700 if (!isTypeLegal(I->getOperand(0)->getType(), VT, /*AllowI1=*/true))
845 if (!isTypeLegal(I->getType(), VT, /*AllowI1=*/true))
934 if (!isTypeLegal(I->getOperand(0)->getType(), VT))
    [all...]

Completed in 291 milliseconds