brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.5 KiB · 8b12b50 Raw
50 lines · cpp
1// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++2c -fclangir -emit-cir %s -o %t.cir2// RUN: FileCheck --input-file=%t.cir %s -check-prefix=CIR3// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++2c -fclangir -emit-llvm %s -o %t.ll4// RUN: FileCheck --input-file=%t.ll %s -check-prefix=LLVM5// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++2c -emit-llvm %s -o %t.ll6// RUN: FileCheck --input-file=%t.ll %s -check-prefix=OGCG7 8int pack_indexing(auto... p) { return p...[0]; }9 10// CIR: %[[P_0:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["p", init]11// CIR: %[[P_1:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["p", init]12// CIR: %[[P_2:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["p", init]13// CIR: %[[RET_VAL:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["__retval"]14// CIR: %[[RESULT:.*]] = cir.load{{.*}} %[[P_0]] : !cir.ptr<!s32i>, !s32i15// CIR: cir.store %[[RESULT]], %[[RET_VAL]] : !s32i, !cir.ptr<!s32i>16// CIR: %[[TMP:.*]] = cir.load %[[RET_VAL]] : !cir.ptr<!s32i>, !s32i17// CIR: cir.return %[[TMP]] : !s32i18 19// LLVM: %[[P_0:.*]] = alloca i32, i64 1, align 420// LLVM: %[[P_1:.*]] = alloca i32, i64 1, align 421// LLVM: %[[P_2:.*]] = alloca i32, i64 1, align 422// LLVM: %[[RET_VAL:.*]] = alloca i32, i64 1, align 423// LLVM: %[[RESULT:.*]] = load i32, ptr %[[P_0]], align 424// LLVM: store i32 %[[RESULT]], ptr %[[RET_VAL]], align 425// LLVM: %[[TMP:.*]] = load i32, ptr %[[RET_VAL]], align 426// LLVM: ret i32 %[[TMP]]27 28// OGCG-DAG: %[[P_0:.*]] = alloca i32, align 429// OGCG-DAG: %[[P_1:.*]] = alloca i32, align 430// OGCG-DAG: %[[P_2:.*]] = alloca i32, align 431// OGCG-DAG: %[[RESULT:.*]] = load i32, ptr %[[P_0]], align 432// OGCG-DAG-NEXT: ret i32 %[[RESULT]]33 34int foo() { return pack_indexing(1, 2, 3); }35 36// CIR: %[[RET_VAL:.*]] = cir.alloca !s32i, !cir.ptr<!s32i>, ["__retval"]37// CIR: %[[RESULT:.*]] = cir.call @_Z13pack_indexingIJiiiEEiDpT_({{.*}}, {{.*}}, {{.*}}) : (!s32i, !s32i, !s32i) -> !s32i38// CIR: cir.store %[[RESULT]], %[[RET_VAL]] : !s32i, !cir.ptr<!s32i>39// CIR: %[[TMP:.*]] = cir.load %[[RET_VAL]] : !cir.ptr<!s32i>, !s32i40// CIR: cir.return %[[TMP]] : !s32i41 42// LLVM: %[[RET_VAL:.*]] = alloca i32, i64 1, align 443// LLVM: %[[RESULT:.*]] = call i32 @_Z13pack_indexingIJiiiEEiDpT_(i32 1, i32 2, i32 3)44// LLVM: store i32 %[[RESULT]], ptr %[[RET_VAL]], align 445// LLVM: %[[TMP:.*]] = load i32, ptr %[[RET_VAL]], align 446// LLVM: ret i32 %[[TMP]]47 48// OGCG-DAG: %[[CALL:.*]] = call noundef i32 @_Z13pack_indexingIJiiiEEiDpT_(i32 noundef 1, i32 noundef 2, i32 noundef 3)49// OGCG-DAG-NEXT: ret i32 %[[RESULT]]50