Skip to content
  1. Aug 31, 2009
    • Daniel Dunbar's avatar
      llvm-mc: Switch MCInst to storing an MCExpr* instead of an MCValue. · 73da11eb
      Daniel Dunbar authored
      Also, use MCInst::print instead of custom code in MCAsmPrinter.
      
      llvm-svn: 80575
      73da11eb
    • Daniel Dunbar's avatar
      llvm-mc: Make MCSymbolData symbol member const. · 945e257e
      Daniel Dunbar authored
      llvm-svn: 80573
      945e257e
    • Daniel Dunbar's avatar
      llvm-mc: Add MCContext to MCAssembler. · 02c7254f
      Daniel Dunbar authored
      llvm-svn: 80572
      02c7254f
    • Daniel Dunbar's avatar
      llvm-mc: Add MCExpr::{dump,print}. · b34a2b9d
      Daniel Dunbar authored
      llvm-svn: 80570
      b34a2b9d
    • Daniel Dunbar's avatar
      llvm-mc: Switch MCExpr construction to using static member functions, and... · f363645d
      Daniel Dunbar authored
      llvm-mc: Switch MCExpr construction to using static member functions, and taking the MCContext (which now owns all MCExprs).
      
      llvm-svn: 80569
      f363645d
    • Daniel Dunbar's avatar
      llvm-mc: Move AsmExpr into MC lib (as MCExpr). · 115e4d6d
      Daniel Dunbar authored
      llvm-svn: 80567
      115e4d6d
    • Chris Lattner's avatar
      Step #1 to giving Callgraph some sane invariants. The problems with callgraph · eedcd848
      Chris Lattner authored
      stem from the fact that we have two types of passes that need to update it:
      
      1. callgraphscc and module passes that are explicitly aware of it
      2. Functionpasses (and loop passes etc) that are interlaced with CGSCC passes
         by the CGSCC Passmgr.
      
      In the case of #1, we can reasonably expect the passes to update the call
      graph just like any analysis.  However, functionpasses are not and generally
      should not be CG aware.  This has caused us no end of problems, so this takes
      a new approach.  Logically, the CGSCC Pass manager can rescan every function 
      after it runs a function pass over it to see if the functionpass made any 
      updates to the IR that affect the callgraph.  This allows it to catch new calls
      introduced by the functionpass.
      
      In practice, doing this would be slow.  This implementation keeps track of
      whether or not the current scc is dirtied by a function pass, and, if so, 
      delays updating the callgraph until it is actually needed again.  This was
      we avoid extraneous rescans, but we still have good invariants when the
      callgraph is needed.
      
      Step #2 of the "give Callgraph some sane invariants" is to change CallGraphNode
      to use a CallBackVH for the callsite entry of the CallGraphNode.  This way
      we can immediately remove entries from the callgraph when a FunctionPass is
      active instead of having dangling pointers.  The current pass tries to tolerate
      these dangling pointers, but it is just an evil hack.
      
      This is related to PR3601/4835/4029.  This also reverts r80541, a hack working
      around the sad lack of invariants.
      
      llvm-svn: 80566
      eedcd848
    • Chris Lattner's avatar
      fix some cases where instcombine would change hte IR but not return true · ff5f1e4d
      Chris Lattner authored
      from runOnFunction
      
      llvm-svn: 80562
      ff5f1e4d
    • Chris Lattner's avatar
      cleanups, factor some code out to a helper function · 7e4fbddf
      Chris Lattner authored
      llvm-svn: 80542
      7e4fbddf
    • Chris Lattner's avatar
      fix a crash building SPASS by tolerating a callsite that doesn't exist · b822abd3
      Chris Lattner authored
      in the callgraph, see the big comment at the top of the testcase.
      
      llvm-svn: 80541
      b822abd3
    • Chris Lattner's avatar
      comment and simplify some code. · 9e507479
      Chris Lattner authored
      llvm-svn: 80540
      9e507479
    • Chris Lattner's avatar
      add -debug output · 70ebbc59
      Chris Lattner authored
      llvm-svn: 80539
      70ebbc59
    • Chris Lattner's avatar
      improve -debug output, so that -debug is more likely to print when · 19dd315e
      Chris Lattner authored
      instcombine is changing stuff.
      
      llvm-svn: 80538
      19dd315e
    • Chris Lattner's avatar
      fix a bug I introduced with my 'instcombine builder' refactoring · 4e3e9307
      Chris Lattner authored
      changes: SimplifyDemandedBits can't use the builder yet because it
      has the wrong insertion point.  This fixes a crash building
      MultiSource/Benchmarks/PAQ8p
      
      llvm-svn: 80537
      4e3e9307
    • Chris Lattner's avatar
      simplify some code by making the SCCNodes set contain Function*'s · 2f2110af
      Chris Lattner authored
      instead of CallGraphNode*'s.  This also papers over a callgraph
      problem where a pass (in this case, MemCpyOpt) introduces a new
      function into the module (llvm.memset.i64) but doesn't add it to
      the call graph (nor should it, since it is a function pass).
      
      While it might be a good idea for MemCpyOpt to not synthesize 
      functions in a runOnFunction(), there is no need for FunctionAttrs
      to be boneheaded, so fix it there.  This fixes an assertion building
      176.gcc.
      
      llvm-svn: 80535
      2f2110af
    • Chris Lattner's avatar
      Fix PR4834, a tricky case where the inliner would resolve an · 081375bb
      Chris Lattner authored
      indirect function pointer, inline it, then go to delete the body.
      The problem is that the callgraph had other references to the function,
      though the inliner had no way to know it, so we got a dangling pointer
      and an invalid iterator out of the deal.
      
      The fix to this is pretty simple: stop the inliner from deleting the
      function by knowing that there are references to it.  Do this by making
      CallGraphNodes contain a refcount.  This requires moving deletion of 
      available_externally functions to the module-level cleanup sweep where
      it belongs.
      
      llvm-svn: 80533
      081375bb
    • Chris Lattner's avatar
      use an accessor instead of poking internals of a node. · 4275cf2e
      Chris Lattner authored
      llvm-svn: 80532
      4275cf2e
    • Jim Grosbach's avatar
      PR4747 · ce713134
      Jim Grosbach authored
      Shared landing pads run into trouble with SJLJ, as the dispatch table is
      mapped to call sites, and merging the pads will throw that off. There needs
      to be a one-to-one mapping of landing pad exception table entries to invoke
      call points.
      
      Detecting the shared pad during lowering of SJLJ info insn't sufficient, as
      the dispatch function may still need separate destinations to properly
      handle phi-nodes.
      
      llvm-svn: 80530
      ce713134
    • Chris Lattner's avatar
      Fix some nasty callgraph dangling pointer problems in · 305b115a
      Chris Lattner authored
      argpromotion and structretpromote.  Basically, when replacing
      a function, they used the 'changeFunction' api which changes
      the entry in the function map (and steals/reuses the callgraph
      node).
      
      This has some interesting effects: first, the problem is that it doesn't
      update the "callee" edges in any callees of the function in the call graph.
      Second, this covers for a major problem in all the CGSCC pass stuff, which 
      is that it is completely broken when functions are deleted if they *don't*
      reuse a CGN.  (there is a cute little fixme about this though :).
      
      This patch changes the protocol that CGSCC passes must obey: now the CGSCC 
      pass manager copies the SCC and preincrements its iterator to avoid passes
      invalidating it.  This allows CGSCC passes to mutate the current SCC.  However
      multiple passes may be run on that SCC, so if passes do this, they are now
      required to *update* the SCC to be current when they return.
      
      Other less interesting parts of this patch are that it makes passes update
      the CG more directly, eliminates changeFunction, and requires clients of
      replaceCallSite to specify the new callee CGN if they are changing it.
      
      llvm-svn: 80527
      305b115a
    • Chris Lattner's avatar
      add a dump() method on callgraph. · 69349a55
      Chris Lattner authored
      llvm-svn: 80524
      69349a55
  2. Aug 30, 2009
Loading