brintos

brintos / llvm-project-archived public Read only

0
0
Text · 876 B · 61568b7 Raw
21 lines · plain
1; RUN: llc -o - -verify-machineinstrs -mtriple=aarch64-apple-darwin -stop-after machine-sink %s | FileCheck %s --check-prefix=ISEL2; RUN: llc -o - -verify-machineinstrs -mtriple=aarch64-apple-darwin -fast-isel -fast-isel-abort=1 -stop-after machine-sink %s | FileCheck %s --check-prefix=FAST-ISEL3 4define void @caller_meta_leaf() {5entry:6  %metadata = alloca i64, i32 3, align 87  store i64 11, ptr %metadata8  store i64 12, ptr %metadata9  store i64 13, ptr %metadata10; ISEL:      ADJCALLSTACKDOWN 0, 0, implicit-def11; ISEL-NEXT: STACKMAP12; ISEL-NEXT: ADJCALLSTACKUP 0, 0, implicit-def13  call void (i64, i32, ...) @llvm.experimental.stackmap(i64 4, i32 0, ptr %metadata)14; FAST-ISEL:      ADJCALLSTACKDOWN 0, 0, implicit-def15; FAST-ISEL-NEXT: STACKMAP16; FAST-ISEL-NEXT: ADJCALLSTACKUP 0, 0, implicit-def17  ret void18}19 20declare void @llvm.experimental.stackmap(i64, i32, ...)21