You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.225
Former-commit-id: 10196d987d5fc5564b9d3b33b1fdf13190f4d0b5
This commit is contained in:
parent
32d52ae4ca
commit
f32dbaf0b2
20
external/llvm/test/CodeGen/X86/stackmap-frame-setup.ll
vendored
Normal file
20
external/llvm/test/CodeGen/X86/stackmap-frame-setup.ll
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
; RUN: llc -o - -verify-machineinstrs -mtriple=x86_64-apple-darwin -mcpu=corei7 -stop-after machine-sink %s | FileCheck %s --check-prefix=ISEL
|
||||
; RUN: llc -o - -verify-machineinstrs -mtriple=x86_64-apple-darwin -mcpu=corei7 -fast-isel -fast-isel-abort=1 -stop-after machine-sink %s | FileCheck %s --check-prefix=FAST-ISEL
|
||||
|
||||
define void @caller_meta_leaf() {
|
||||
entry:
|
||||
%metadata = alloca i64, i32 3, align 8
|
||||
store i64 11, i64* %metadata
|
||||
store i64 12, i64* %metadata
|
||||
store i64 13, i64* %metadata
|
||||
; ISEL: ADJCALLSTACKDOWN64 0, 0, 0, implicit-def
|
||||
; ISEL-NEXT: STACKMAP
|
||||
; ISEL-NEXT: ADJCALLSTACKUP64 0, 0, implicit-def
|
||||
call void (i64, i32, ...) @llvm.experimental.stackmap(i64 4, i32 0, i64* %metadata)
|
||||
; FAST-ISEL: ADJCALLSTACKDOWN64 0, 0, 0, implicit-def
|
||||
; FAST-ISEL-NEXT: STACKMAP
|
||||
; FAST-ISEL-NEXT: ADJCALLSTACKUP64 0, 0, implicit-def
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void @llvm.experimental.stackmap(i64, i32, ...)
|
Reference in New Issue
Block a user