mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
d68dfedd72
To improve consistency and avoid unneeded shell feature (output redirection). While here, make other changes to improve consistency --docnum 1 => --docnum=1 -docnum=x => --docnum=x
55 lines
2.8 KiB
Plaintext
55 lines
2.8 KiB
Plaintext
RUN: yaml2obj %p/Inputs/obj-hashes-1.yaml -o %T/obj-hashes-1.obj
|
|
RUN: yaml2obj %p/Inputs/obj-hashes-2.yaml -o %T/obj-hashes-2.obj
|
|
RUN: echo obj-hashes-1 > %T/hashes-combined.out
|
|
RUN: llvm-pdbutil dump -type-extras %T/obj-hashes-1.obj >> %T/hashes-combined.out
|
|
RUN: echo obj-hashes-2 >> %T/hashes-combined.out
|
|
RUN: llvm-pdbutil dump -type-extras %T/obj-hashes-2.obj >> %T/hashes-combined.out
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-ONE %s
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-TWO %s
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-THREE %s
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-FOUR %s
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-FIVE %s
|
|
RUN: cat %T/hashes-combined.out | FileCheck --check-prefix=CHECK-SIX %s
|
|
|
|
; char**. Both the local and global hashes should be the same, since the only
|
|
; back-references are for simple types which have fixed indices.
|
|
CHECK-ONE: obj-hashes-1
|
|
CHECK-ONE: TI: 0x1001, LocalHash: {{.*}}, GlobalHash: A7F8CF106F39A384
|
|
CHECK-ONE: obj-hashes-2
|
|
CHECK-ONE: TI: 0x1000, LocalHash: {{.*}}, GlobalHash: A7F8CF106F39A384
|
|
|
|
; int**. Same as char**, both the local and global hashes should be the same.
|
|
CHECK-TWO: obj-hashes-1
|
|
CHECK-TWO: TI: 0x1000, LocalHash: {{.*}}, GlobalHash: 95D0616C5962F4B1
|
|
CHECK-TWO: obj-hashes-2
|
|
CHECK-TWO: TI: 0x1002, LocalHash: {{.*}}, GlobalHash: 95D0616C5962F4B1
|
|
|
|
; int***. Different local hashes, since the referent type (int**) is not at the
|
|
; same TypeIndex in both streams. Same global hash, since they represent the
|
|
; same record.
|
|
CHECK-THREE: obj-hashes-1
|
|
CHECK-THREE: TI: 0x1002, LocalHash: {{.*}}, GlobalHash: 48D95F14F6176F4F
|
|
CHECK-THREE: obj-hashes-2
|
|
CHECK-THREE: TI: 0x1001, LocalHash: {{.*}}, GlobalHash: 48D95F14F6176F4F
|
|
|
|
; arg list (char**, int***). Different local hashes, since the parameter types
|
|
; both occur at different TypeIndices in their respective input streams. Same
|
|
; global hash, since the global hash of all referenced types is the same in
|
|
; both streams.
|
|
CHECK-FOUR: obj-hashes-1
|
|
CHECK-FOUR: TI: 0x1003, LocalHash: {{.*}}, GlobalHash: 99410CD14F5EE80D
|
|
CHECK-FOUR: obj-hashes-2
|
|
CHECK-FOUR: TI: 0x1004, LocalHash: {{.*}}, GlobalHash: 99410CD14F5EE80D
|
|
|
|
; double**. This is only in stream 2, as a means to throw off the indexing.
|
|
CHECK-FIVE: obj-hashes-1
|
|
CHECK-FIVE: obj-hashes-2
|
|
CHECK-FIVE: TI: 0x1003, LocalHash: {{.*}}, GlobalHash: 20691EA9B88584CC
|
|
|
|
; int** (char**, int***). For the same logic as described in previous records,
|
|
; these two records have the same global hash but different local hashes.
|
|
CHECK-SIX: obj-hashes-1
|
|
CHECK-SIX: TI: 0x1004, LocalHash: {{.*}}, GlobalHash: 7ACF479173341AC1
|
|
CHECK-SIX: obj-hashes-2
|
|
CHECK-SIX: TI: 0x1005, LocalHash: {{.*}}, GlobalHash: 7ACF479173341AC1
|