diff options
| author | Florian Hahn <flo@fhahn.com> | 2019-07-25 20:48:13 +0000 | 
|---|---|---|
| committer | Florian Hahn <flo@fhahn.com> | 2019-07-25 20:48:13 +0000 | 
| commit | c74808b9142aa7f62d387417aab266170950ffdd (patch) | |
| tree | 4a9d033972cd64aa30631cdf8c6bca18e3735ed4 /lldb/packages/Python/lldbsuite/test/configuration.py | |
| parent | 568bb7eeb6ffe824576a6a8fca7bd90efd44d20c (diff) | |
| download | llvm-c74808b9142aa7f62d387417aab266170950ffdd.zip llvm-c74808b9142aa7f62d387417aab266170950ffdd.tar.gz llvm-c74808b9142aa7f62d387417aab266170950ffdd.tar.bz2 | |
[PredicateInfo] Replace pointer comparisons with deterministic compares.
Currently there are a few pointer comparisons in ValueDFS_Compare, which
can cause non-deterministic ordering when materializing values. There
are 2 cases this patch fixes:
1. Order defs before uses used to compare pointers, which guarantees
   defs before uses, but causes non-deterministic ordering between 2
   uses or 2 defs, depending on the allocation order. By converting the
   pointers to booleans, we can circumvent that problem.
2. comparePHIRelated was comparing the basic block pointers of edges,
   which also results in a non-deterministic order and is also not
   really meaningful for ordering. By ordering by their destination DFS
   numbers we guarantee a deterministic order.
For the example below, we can end up with 2 different uselist orderings,
when running `opt -mem2reg -ipsccp` hundreds of times. Because the
non-determinism is caused by allocation ordering, we cannot reproduce it
with ipsccp alone.
    declare i32 @hoge() local_unnamed_addr #0
    define dso_local i32 @ham(i8* %arg, i8* %arg1) #0 {
    bb:
      %tmp = alloca i32
      %tmp2 = alloca i32, align 4
      br label %bb19
    bb4:                                              ; preds = %bb20
      br label %bb6
    bb6:                                              ; preds = %bb4
      %tmp7 = call i32 @hoge()
      store i32 %tmp7, i32* %tmp
      %tmp8 = load i32, i32* %tmp
      %tmp9 = icmp eq i32 %tmp8, 912730082
      %tmp10 = load i32, i32* %tmp
      br i1 %tmp9, label %bb11, label %bb16
    bb11:                                             ; preds = %bb6
      unreachable
    bb13:                                             ; preds = %bb20
      br label %bb14
    bb14:                                             ; preds = %bb13
      %tmp15 = load i32, i32* %tmp
      br label %bb16
    bb16:                                             ; preds = %bb14, %bb6
      %tmp17 = phi i32 [ %tmp10, %bb6 ], [ 0, %bb14 ]
      br label %bb19
    bb18:                                             ; preds = %bb20
      unreachable
    bb19:                                             ; preds = %bb16, %bb
      br label %bb20
    bb20:                                             ; preds = %bb19
      indirectbr i8* null, [label %bb4, label %bb13, label %bb18]
    }
Reviewers: davide, efriedma
Reviewed By: efriedma
Differential Revision: https://reviews.llvm.org/D64866
llvm-svn: 367049
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/configuration.py')
0 files changed, 0 insertions, 0 deletions
