[PATCH] D99815: [CSSPGO][Test] XFAIL profile-context-tracker-debug.ll on AIX

Jinsong Ji via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 2 15:04:38 PDT 2021


jsji added a comment.

In D99815#2667046 <https://reviews.llvm.org/D99815#2667046>, @wenlei wrote:

> Hmm.. the node order is determined by `std::map<uint32_t, ContextTrieNode> AllChildContext` which should be consistent across platforms.
>
> Which part of context tracker did you see the difference triggered by `std::hash<std::string>`?

On Linux:

Context Profile Tree:
Node:

  Callsite: 0
  Children:
    Node: externalA
    Node: external
    Node: main

On AIX:
Context Profile Tree:
Node:

  Callsite: 0
  Children:
    Node: main
    Node: externalA
    Node: external


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D99815/new/

https://reviews.llvm.org/D99815



More information about the llvm-commits mailing list