[all-commits] [llvm/llvm-project] 1d54aa: [CSSPGO][Test] XFAIL profile-context-tracker-debug...

jsji via All-commits all-commits at lists.llvm.org
Fri Apr 2 15:16:36 PDT 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 1d54aa2e0d72a554edfe57e4e3bcfd6e8f3d3514
      https://github.com/llvm/llvm-project/commit/1d54aa2e0d72a554edfe57e4e3bcfd6e8f3d3514
  Author: Jinsong Ji <jji at us.ibm.com>
  Date:   2021-04-02 (Fri, 02 Apr 2021)

  Changed paths:
    M llvm/test/Transforms/SampleProfile/profile-context-tracker-debug.ll

  Log Message:
  -----------
  [CSSPGO][Test] XFAIL profile-context-tracker-debug.ll on AIX

The case start to fail since https://reviews.llvm.org/D99351.

Looks like to me that the node order within Context Profile Tree depends
on the implmementation of std::hash<std::string>.

Unfortunately, the current clang implementation generate different values on
AIX (or for all big-endian systems?)

On Linux:
main: 2408804140(0x8f936f2c)
external:  896680882(0x357243b2)
externalA:  620231129(0x24f7f9d9)

On AIX:
main:  994322777(0x3b442959)
external: 3548191215(0xd37d19ef)
externalA: 1390365101(0x52df49ad)

XFAIL it first while we discuss and seek for a fix.

Reviewed By: wenlei

Differential Revision: https://reviews.llvm.org/D99815




More information about the All-commits mailing list