From: Chris Lattner Date: Wed, 8 Feb 2006 06:43:51 +0000 (+0000) Subject: Move emails from nate into public places X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8d3f490991a190e26ec9aaa5c9d3c21f809666a5;p=oota-llvm.git Move emails from nate into public places git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26051 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/README.txt b/lib/Target/PowerPC/README.txt index d51776f6232..1286845d925 100644 --- a/lib/Target/PowerPC/README.txt +++ b/lib/Target/PowerPC/README.txt @@ -279,6 +279,23 @@ instead of cmpwi cr0, r7, 0 bne cr0, LBB_compare_4 ; loopexit +FreeBench/mason has a basic block that looks like this: + + %tmp.130 = seteq int %p.0__, 5 ; [#uses=1] + %tmp.134 = seteq int %p.1__, 6 ; [#uses=1] + %tmp.139 = seteq int %p.2__, 12 ; [#uses=1] + %tmp.144 = seteq int %p.3__, 13 ; [#uses=1] + %tmp.149 = seteq int %p.4__, 14 ; [#uses=1] + %tmp.154 = seteq int %p.5__, 15 ; [#uses=1] + %bothcond = and bool %tmp.134, %tmp.130 ; [#uses=1] + %bothcond123 = and bool %bothcond, %tmp.139 ; + %bothcond124 = and bool %bothcond123, %tmp.144 ; + %bothcond125 = and bool %bothcond124, %tmp.149 ; + %bothcond126 = and bool %bothcond125, %tmp.154 ; + br bool %bothcond126, label %shortcirc_next.5, label %else.0 + +This is a particularly important case where handling CRs better will help. + ===-------------------------------------------------------------------------=== Simple IPO for argument passing, change: