Skip to content
  1. Aug 21, 2012
  2. Aug 20, 2012
    • Jakob Stoklund Olesen's avatar
      Don't add CFG edges for redundant conditional branches. · 7d33c573
      Jakob Stoklund Olesen authored
      IR that hasn't been through SimplifyCFG can look like this:
      
        br i1 %b, label %r, label %r
      
      Make sure we don't create duplicate Machine CFG edges in this case.
      
      Fix the machine code verifier to accept conditional branches with a
      single CFG edge.
      
      llvm-svn: 162230
      7d33c573
    • Jakob Stoklund Olesen's avatar
      Clarify that duplicate edges are not allowed in the Machine CFG. · 784973b8
      Jakob Stoklund Olesen authored
      LLVM IR has labeled duplicate CFG edges, but since Machine CFG edges
      don't have labels, it doesn't make sense to allow duplicates. There is
      no way of telling what the edges mean.
      
      Duplicate CFG edges cause confusion when dealing with edge weights. It
      seems that code producing duplicate CFG edges usually does the wrong
      thing with edge weights.
      
      llvm-svn: 162227
      784973b8
    • Jakob Stoklund Olesen's avatar
      Add a verification pass after ExpandISelPseudos. · 1d026267
      Jakob Stoklund Olesen authored
      This pass often has weird CFG hacks and hand-written MI building code
      that can go wrong in many ways.
      
      llvm-svn: 162224
      1d026267
    • Jakob Stoklund Olesen's avatar
      Add CFG checks to MachineVerifier. · de31b52c
      Jakob Stoklund Olesen authored
      Verify that the predecessor and successor lists are consistent and free
      of duplicates.
      
      llvm-svn: 162223
      de31b52c
    • Jakob Stoklund Olesen's avatar
      Use a SmallPtrSet to dedup successors in EmitSjLjDispatchBlock. · 710093e3
      Jakob Stoklund Olesen authored
      The test case ARM/2011-05-04-MultipleLandingPadSuccs.ll was creating
      duplicate successor list entries.
      
      llvm-svn: 162222
      710093e3
    • Sebastian Pop's avatar
      enable cross compilation with cmake · faeca292
      Sebastian Pop authored
      This patch allows us to use cmake to specify a cross compiler: target different
      than host. In particular, it moves LLVM_DEFAULT_TARGET_TRIPLE and TARGET_TRIPLE
      variables from cmake/config-ix.cmake to the toplevel CMakeLists.txt to make them
      available at configure time.
      
      Here is the command line that I have used to test my patches to create a Hexagon
      cross compiler hosted on x86:
      
      $ cmake -G Ninja -D LLVM_TARGETS_TO_BUILD:STRING=Hexagon -D TARGET_TRIPLE:STRING=hexagon-unknown-linux-gnu -D LLVM_DEFAULT_TARGET_TRIPLE:STRING=hexagon-unknown-linux-gnu -D LLVM_TARGET_ARCH:STRING=hexagon-unknown-linux-gnu ..
      $ ninja check
      
      llvm-svn: 162219
      faeca292
Loading