Home
last modified time | relevance | path

Searched refs:IsQuad (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaARM.cpp320 int IsQuad = ForceQuad ? true : Type.isQuad(); in RFT() local
324 return shift ? 7 : (8 << IsQuad) - 1; in RFT()
327 return shift ? 15 : (4 << IsQuad) - 1; in RFT()
329 return shift ? 31 : (2 << IsQuad) - 1; in RFT()
332 return shift ? 63 : (1 << IsQuad) - 1; in RFT()
334 return shift ? 127 : (1 << IsQuad) - 1; in RFT()
337 return (4 << IsQuad) - 1; in RFT()
340 return (2 << IsQuad) - 1; in RFT()
343 return (1 << IsQuad) - 1; in RFT()
346 return (4 << IsQuad) - 1; in RFT()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTargetBuiltins.h205 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { in NeonTypeFlags() argument
208 if (IsQuad) in NeonTypeFlags()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp6340 int IsQuad = TypeFlags.isQuad(); in GetNeonType() local
6344 return llvm::FixedVectorType::get(CGF->Int8Ty, V1Ty ? 1 : (8 << IsQuad)); in GetNeonType()
6347 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6350 return llvm::FixedVectorType::get(CGF->BFloatTy, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6352 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6355 return llvm::FixedVectorType::get(CGF->HalfTy, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6357 return llvm::FixedVectorType::get(CGF->Int16Ty, V1Ty ? 1 : (4 << IsQuad)); in GetNeonType()
6359 return llvm::FixedVectorType::get(CGF->Int32Ty, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
6362 return llvm::FixedVectorType::get(CGF->Int64Ty, V1Ty ? 1 : (1 << IsQuad)); in GetNeonType()
6369 return llvm::FixedVectorType::get(CGF->FloatTy, V1Ty ? 1 : (2 << IsQuad)); in GetNeonType()
[all …]