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

1 23

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Target/
TargetLowering.h 482 return isTypeLegal(VT) ? VT : MVT::INVALID_SIMPLE_VALUE_TYPE;
609 bool isTypeLegal(EVT VT) const {
770 return (VT == MVT::Other || isTypeLegal(VT)) &&
779 return (VT == MVT::Other || isTypeLegal(VT)) &&
788 return (VT == MVT::Other || isTypeLegal(VT)) &&
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Target/
TargetLowering.h 482 return isTypeLegal(VT) ? VT : MVT::INVALID_SIMPLE_VALUE_TYPE;
609 bool isTypeLegal(EVT VT) const {
770 return (VT == MVT::Other || isTypeLegal(VT)) &&
779 return (VT == MVT::Other || isTypeLegal(VT)) &&
788 return (VT == MVT::Other || isTypeLegal(VT)) &&
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Target/
TargetLowering.h 482 return isTypeLegal(VT) ? VT : MVT::INVALID_SIMPLE_VALUE_TYPE;
609 bool isTypeLegal(EVT VT) const {
770 return (VT == MVT::Other || isTypeLegal(VT)) &&
779 return (VT == MVT::Other || isTypeLegal(VT)) &&
788 return (VT == MVT::Other || isTypeLegal(VT)) &&
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FastISel.cpp 139 bool isTypeLegal(Type *Ty, MVT &VT);
479 if (!isTypeLegal(CFP->getType(), VT))
904 bool AArch64FastISel::isTypeLegal(Type *Ty, MVT &VT) {
918 return TLI.isTypeLegal(VT);
929 if (isTypeLegal(Ty, VT))
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFastISel.cpp 161 bool isTypeLegal(Type *Ty, MVT &VT);
693 bool ARMFastISel::isTypeLegal(Type *Ty, MVT &VT) {
702 return TLI.isTypeLegal(VT);
706 if (isTypeLegal(Ty, VT)) return true;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp 161 bool isTypeLegal(Type *Ty, MVT &VT, bool AllowI1 = false);
280 if (!isTypeLegal(RetTy, RetVT))
320 bool X86FastISel::isTypeLegal(Type *Ty, MVT &VT, bool AllowI1) {
340 return (AllowI1 && VT == MVT::i1) || TLI.isTypeLegal(VT);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
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/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 503 bool isTypeLegal(const EVT &VT) {
505 return TLI.isTypeLegal(VT);
    [all...]

Completed in 513 milliseconds

1 23