The parser provides a convenient interface for reading llvm stackmap v1 sections in object files. This patch also includes a new option for llvm-readobj, '-stackmap', which uses the parser to pretty-print stackmap sections for debugging/testing purposes. llvm-svn: 240860
18 lines
667 B
Plaintext
18 lines
667 B
Plaintext
RUN: llvm-mc -triple x86_64-apple-darwin -filetype=obj -o %t %p/Inputs/stackmap.s && \
|
|
RUN: llvm-readobj -stackmap %t | FileCheck %s
|
|
|
|
CHECK: LLVM StackMap Version: 1
|
|
CHECK-NEXT: Num Functions: 1
|
|
CHECK-NEXT: Function address: 0, stack size: 16
|
|
CHECK-NEXT: Num Constants: 1
|
|
CHECK-NEXT: #1: 10000000000
|
|
CHECK-NEXT: Num Records: 1
|
|
CHECK-NEXT: Record ID: 2, instruction offset: 1
|
|
CHECK-NEXT: 5 locations:
|
|
CHECK-NEXT: #1: Register R#5
|
|
CHECK-NEXT: #2: Constant 10
|
|
CHECK-NEXT: #3: ConstantIndex #0 (10000000000)
|
|
CHECK-NEXT: #4: Direct R#4 + -8
|
|
CHECK-NEXT: #5: Indirect [R#6 + -16]
|
|
CHECK-NEXT: 1 live-outs: [ R#7 (8-bytes) ]
|