Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/Sema/
H A Dattr-arm-sve-vector-bits.c206 #define VECTOR_ALIGN 16 macro
209 _Static_assert(__alignof__(fixed_int8_t) == VECTOR_ALIGN, "");
210 _Static_assert(__alignof__(fixed_int16_t) == VECTOR_ALIGN, "");
211 _Static_assert(__alignof__(fixed_int32_t) == VECTOR_ALIGN, "");
212 _Static_assert(__alignof__(fixed_int64_t) == VECTOR_ALIGN, "");
214 _Static_assert(__alignof__(fixed_uint8_t) == VECTOR_ALIGN, "");
215 _Static_assert(__alignof__(fixed_uint16_t) == VECTOR_ALIGN, "");
216 _Static_assert(__alignof__(fixed_uint32_t) == VECTOR_ALIGN, "");
217 _Static_assert(__alignof__(fixed_uint64_t) == VECTOR_ALIGN, "");
219 _Static_assert(__alignof__(fixed_float16_t) == VECTOR_ALIGN, "");
[all …]
/llvm-project-15.0.7/llvm/lib/IR/
H A DDataLayout.cpp175 {VECTOR_ALIGN, 64, Align(8), Align(8)}, // v2i32, v1i64, ...
176 {VECTOR_ALIGN, 128, Align(16), Align(16)}, // v16i8, v8i16, v4i32, ...
377 case 'v': AlignType = VECTOR_ALIGN; break; in parseSpecifier()
804 auto I = findAlignmentLowerBound(VECTOR_ALIGN, BitWidth); in getAlignment()
805 if (I != Alignments.end() && I->AlignType == VECTOR_ALIGN && in getAlignment()
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DDataLayout.h56 VECTOR_ALIGN = 'v', enumerator