Home
last modified time | relevance | path

Searched refs:ConstVector (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Daix-alias-alignment-3.ll7 @ConstVector = global <2 x i64> <i64 1, i64 2>
8 @var = alias i64, getelementptr inbounds (i8, ptr @ConstVector, i32 1)
11 ; CHECK-NEXT: .globl ConstVector # @ConstVector
14 ; CHECK-NEXT: ConstVector:
H A Daix-alias-alignment-2.ll8 @ConstVector = global <2 x i64> <i64 12, i64 34>, align 4
9 @var1 = alias i64, getelementptr inbounds (<2 x i64>, <2 x i64>* @ConstVector, i32 0, i32 1)
11 …store i64 %a1, i64* getelementptr inbounds (<2 x i64>, <2 x i64>* @ConstVector, i32 0, i32 1), ali…
15 ; ASM: .globl ConstVector # @ConstVector
18 ; ASM-NEXT: ConstVector:
67 ; SYM-NEXT: 00000090 g O .data (csect: .data) 00000000 ConstVector
77 ; SYM-NEXT: 000000e4 l O .data 00000004 ConstVector
/llvm-project-15.0.7/llvm/utils/
H A Dllvm.grm226 ConstVal::= Types "[" ^ ConstVector ^ "]"
229 | Types "<" ^ ConstVector ^ ">"
230 | Types "{" ConstVector "}"
232 | Types "<" ^ "{" ConstVector "}" ^ ">"
260 ConstVector ::= ConstVector ^ "," ConstVal | ConstVal ;
328 | "<" ConstVector ">"
329 | "[" ConstVector "]"
332 | "{" ConstVector "}"
334 | "<" ^ "{" ConstVector "}" ^ ">"
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir.go893 func ConstVector(scalarConstVals []Value, packed bool) (v Value) { func