diff options
Diffstat (limited to 'llvm/test/tools/llvm-readobj/ELF')
| -rw-r--r-- | llvm/test/tools/llvm-readobj/ELF/bb-addr-map-feature-warning.test | 37 | ||||
| -rw-r--r-- | llvm/test/tools/llvm-readobj/ELF/bb-addr-map-pgo-analysis-map.test | 17 | 
2 files changed, 48 insertions, 6 deletions
| diff --git a/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-feature-warning.test b/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-feature-warning.test new file mode 100644 index 0000000..24726c34 --- /dev/null +++ b/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-feature-warning.test @@ -0,0 +1,37 @@ +## This test checks that we output a warning when the specified version is too old to support the given features. + +# RUN: yaml2obj %s -o %t +# RUN: llvm-readobj --bb-addr-map %t 2>&1 | FileCheck -DFILE=%t %s + +--- !ELF +FileHeader: +  Class: ELFCLASS64 +  Data:  ELFDATA2LSB +  Type:  ET_EXEC + +# CHECK: BBAddrMap [ +# CHECK-NEXT: warning: '[[FILE]]': unable to dump SHT_LLVM_BB_ADDR_MAP section with index 1: version should be >= 3 for SHT_LLVM_BB_ADDR_MAP when callsite offsets feature is enabled: version = 2 feature = 32 +Sections: +  - Name: '.llvm_bb_addr_map (1)' +    Type: SHT_LLVM_BB_ADDR_MAP +    Entries: +      - Version: 2 +        Feature: 0x20 + +# CHECK: BBAddrMap [ +# CHECK-NEXT: warning: '[[FILE]]': unable to dump SHT_LLVM_BB_ADDR_MAP section with index 2: version should be >= 4 for SHT_LLVM_BB_ADDR_MAP when basic block hash feature is enabled: version = 3 feature = 64 + +  - Name: '.llvm_bb_addr_map (2)' +    Type: SHT_LLVM_BB_ADDR_MAP +    Entries: +      - Version: 3 +        Feature: 0x40 + +# CHECK: BBAddrMap [ +# CHECK-NEXT: warning: '[[FILE]]': unable to dump SHT_LLVM_BB_ADDR_MAP section with index 3: version should be >= 5 for SHT_LLVM_BB_ADDR_MAP when post link cfg feature is enabled: version = 4 feature = 128 + +  - Name: '.llvm_bb_addr_map (3)' +    Type: SHT_LLVM_BB_ADDR_MAP +    Entries: +      - Version: 4 +        Feature: 0x80 diff --git a/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-pgo-analysis-map.test b/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-pgo-analysis-map.test index 5faafd4..8e9d227 100644 --- a/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-pgo-analysis-map.test +++ b/llvm/test/tools/llvm-readobj/ELF/bb-addr-map-pgo-analysis-map.test @@ -15,7 +15,7 @@  ## Check that a malformed section can be handled.  # RUN: yaml2obj %s -DBITS=32 -DSIZE=24 -o %t2.o -# RUN: llvm-readobj %t2.o --bb-addr-map 2>&1 | FileCheck --match-full-lines %s -DOFFSET=0x00000018 -DFILE=%t2.o --check-prefix=TRUNCATED +# RUN: llvm-readobj %t2.o --bb-addr-map 2>&1 | FileCheck --match-full-lines %s -DOFFSET=0x00000015 -DFILE=%t2.o --check-prefix=TRUNCATED  ## Check that missing features can be handled.  # RUN: yaml2obj %s -DBITS=32 -DFEATURE=0x2 -o %t3.o @@ -59,17 +59,20 @@  # CHECK-NEXT:         {  # RAW-NEXT:             Frequency: 100  # PRETTY-NEXT:          Frequency: 1.0 +# CHECK-NEXT:           PostLink Frequency: 10  # CHECK-NEXT:           Successors [  # CHECK-NEXT:             {  # CHECK-NEXT:               ID: 2  # RAW-NEXT:                 Probability: 0x80000000  # PRETTY-NEXT:              Probability: 0x80000000 / 0x80000000 = 100.00% +# CHECK-NEXT:               PostLink Probability: 7  # CHECK-NEXT:             }  # CHECK-NEXT:           ]  # CHECK-NEXT:         }  # CHECK-NEXT:         {  # RAW-NEXT:             Frequency: 100  # PRETTY-NEXT:          Frequency: 1.0 +# CHECK-NEXT:           PostLink Frequency: 0  # CHECK-NEXT:           Successors [  # CHECK-NEXT:           ]  # CHECK-NEXT:         } @@ -172,8 +175,8 @@ Sections:      ShSize: [[SIZE=<none>]]      Link:   .text      Entries: -      - Version: 2 -        Feature: 0x7 +      - Version: 5 +        Feature: 0x87          BBRanges:            - BaseAddress: [[ADDR=0x11111]]              BBEntries: @@ -197,10 +200,12 @@ Sections:      PGOAnalyses:        - FuncEntryCount: 100          PGOBBEntries: -          - BBFreq:        100 +          - BBFreq:          100 +            PostLinkBBFreq: 10              Successors: -              - ID:        2 -                BrProb:    0x80000000 +              - ID:              2 +                BrProb:          0x80000000 +                PostLinkBrFreq: 7            - BBFreq:        100              Successors:    []        - FuncEntryCount: 8888 | 
