mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
dd1ef1f341
The partitioning feature was proposed here: http://lists.llvm.org/pipermail/llvm-dev/2019-February/130583.html This is mostly just documentation. The feature itself will be contributed in subsequent patches. Differential Revision: https://reviews.llvm.org/D60242 llvm-svn: 361923
40 lines
1.8 KiB
LLVM
40 lines
1.8 KiB
LLVM
; RUN: env LLVM_OVERRIDE_PRODUCER=producer opt -o %t %s
|
|
; RUN: llvm-bcanalyzer -dump -show-binary-blobs %t | FileCheck --check-prefix=BCA %s
|
|
|
|
; Same producer, does not require upgrade.
|
|
; RUN: env LLVM_OVERRIDE_PRODUCER=producer llvm-lto2 dump-symtab %t | FileCheck --check-prefix=SYMTAB %s
|
|
|
|
; Different producer, requires upgrade.
|
|
; RUN: env LLVM_OVERRIDE_PRODUCER=consumer llvm-lto2 dump-symtab %t | FileCheck --check-prefix=SYMTAB %s
|
|
|
|
; BCA: <SYMTAB_BLOCK
|
|
; Version stored at offset 0.
|
|
; BCA-NEXT: <BLOB abbrevid=4/> blob data = '\x02\x00\x00\x00\x06\x00\x00\x00\x08\x00\x00\x00L\x00\x00\x00\x01\x00\x00\x00X\x00\x00\x00\x00\x00\x00\x00X\x00\x00\x00\x02\x00\x00\x00\x88\x00\x00\x00\x00\x00\x00\x00\x0E\x00\x00\x00\x18\x00\x00\x00&\x00\x00\x00\x0B\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x88\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\xFF\xFF\xFF\xFF\x00$\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\xFF\xFF\xFF\xFF\x08$\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00\x03\x00\x00\x00'
|
|
; BCA-NEXT: </SYMTAB_BLOCK>
|
|
; BCA-NEXT: <STRTAB_BLOCK
|
|
; BCA-NEXT: <BLOB abbrevid=4/> blob data = 'foobarproducerx86_64-unknown-linux-gnuirsymtab.ll'
|
|
; BCA-NEXT: </STRTAB_BLOCK>
|
|
|
|
; SYMTAB: version: 2
|
|
; SYMTAB-NEXT: producer: producer
|
|
; SYMTAB-NEXT: target triple: x86_64-unknown-linux-gnu
|
|
; SYMTAB-NEXT: source filename: irsymtab.ll
|
|
; SYMTAB-NEXT: {{^dependent libraries: \"foo\" \"bar\"$}}
|
|
; SYMTAB-NEXT: D------X foo
|
|
; SYMTAB-NEXT: DU-----X bar
|
|
|
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
source_filename = "irsymtab.ll"
|
|
|
|
define void @foo() {
|
|
ret void
|
|
}
|
|
|
|
declare void @bar()
|
|
|
|
!llvm.dependent-libraries = !{!0, !1}
|
|
|
|
!0 = !{!"foo"}
|
|
!1 = !{!"bar"}
|