HomeSort by relevance Sort by last modified time
    Searched refs:Scalable (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/CodeGen/
ScalableVectorMVTsTest.cpp 46 // Create with scalable flag
47 EVT Vnx4i32 = EVT::getVectorVT(Ctx, MVT::i32, 4, /*Scalable=*/true);
74 ASSERT_TRUE(EltCnt.Scalable);
76 // Check that fixed-length vector types aren't scalable.
85 ASSERT_FALSE(EltCnt.Scalable);
  /external/v8/src/interpreter/
bytecode-traits.h 21 #define DECLARE_OPERAND_TYPE_INFO(Name, Scalable, Unsigned, BaseSize) \
24 static const bool kIsScalable = Scalable; \
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
MachineValueType.h 107 // Scalable integer types
244 // For scalable vectors, the total number of elements is a multiple of 'Min'
248 bool Scalable;
250 ElementCount(unsigned Min, bool Scalable)
251 : Min(Min), Scalable(Scalable) {}
254 return { Min * RHS, Scalable };
263 return { Min / RHS, Scalable };
272 return Min == RHS.Min && Scalable == RHS.Scalable;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
ValueTypes.h 79 assert(!IsScalable && "We don't support extended scalable types yet");
89 assert (!EC.Scalable && "We don't support extended scalable types yet");
99 "We don't support extended scalable types yet");
158 // FIXME: We don't support extended scalable types yet, because the
280 // Given a (possibly scalable) vector type, return the ElementCount
287 "We don't support extended scalable types yet");

Completed in 248 milliseconds