HomeSort by: relevance | last modified time | path
    Searched refs:LaneSizeInBits (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringBase.cpp 1109 unsigned LaneSizeInBits = NewVT.getScalarSizeInBits();
1112 if (!isPowerOf2_32(LaneSizeInBits))
1113 LaneSizeInBits = NextPowerOf2(LaneSizeInBits);
1118 return NumVectorRegs * (LaneSizeInBits / DestVT.getScalarSizeInBits());
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 10876 /// Test whether there are elements crossing LaneSizeInBits lanes in this
10881 static bool isLaneCrossingShuffleMask(unsigned LaneSizeInBits,
10884 assert(LaneSizeInBits && ScalarSizeInBits &&
10885 (LaneSizeInBits % ScalarSizeInBits) == 0 &&
10887 int LaneSize = LaneSizeInBits / ScalarSizeInBits;
10901 /// Test whether elements in each LaneSizeInBits lane in this shuffle mask come
10904 static bool isMultiLaneShuffleMask(unsigned LaneSizeInBits,
10907 assert(LaneSizeInBits && ScalarSizeInBits &&
10908 (LaneSizeInBits % ScalarSizeInBits) == 0 &&
10911 int NumEltsPerLane = LaneSizeInBits / ScalarSizeInBits
    [all...]

Completed in 22 milliseconds