<div dir="ltr">Okay, as far as I can see looking through the output of that, the empty block isn't created near the end, it exists at the start and never goes away.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Sep 20, 2015 at 1:36 PM, Hal Finkel <span dir="ltr"><<a href="mailto:hfinkel@anl.gov" target="_blank">hfinkel@anl.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Russell,<br>
<br>
Can you run your IR though opt with -O3 and -print-after-all and see when the block becomes empty? PassManagerBuilder::populateModulePassManager has, fairly near the end:<br>
<br>
  MPM.add(createCFGSimplificationPass());<br>
<br>
but, other things do run afterward. Maybe we need another one of these closer to the end?<br>
<br>
One other thing to realize is that an empty block like this might not actually turn up in any generated machine code because of how MachineBlockPlacement (and other MI-level passes) work.<br>
<br>
 -Hal<br>
<div class="HOEnZb"><div class="h5"><br>
----- Original Message -----<br>
> From: "Russell Wallace via llvm-dev" <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><br>
> To: "llvm-dev" <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><br>
> Sent: Sunday, September 20, 2015 1:28:56 AM<br>
> Subject: [llvm-dev] How to invoke simplifycfg from code<br>
><br>
> Simplifycfg doesn't get run by default even with -O3, but 'opt<br>
> -simplifycfg' can do it. I'm looking to add this functionality to an<br>
> optimizer program that uses the llvm libraries. What's the best way<br>
> to do this? I don't really mind whether it becomes available as a<br>
> command line option as in opt, or I need to hardcode it as always<br>
> on.<br>
><br>
><br>
> To make it available as a command line option... I'm looking at the<br>
> code for opt, but it makes no reference to simplifycfg anywhere in<br>
> the code. I'm guessing it does something else that gets that option<br>
> linked in and somehow thereby connects that to activating the actual<br>
> pass; how is this done?<br>
><br>
><br>
> Alternatively in an attempt to hardwire it I got as far as<br>
> FPM.add(new SimplifyCFGPass); but that fails to compile because<br>
> SimplifyCFGPass isn't of a compatible type, which indeed it isn't;<br>
> what should I be doing here?<br>
</div></div><div class="HOEnZb"><div class="h5">> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
><br>
<br>
</div></div><span class="HOEnZb"><font color="#888888">--<br>
Hal Finkel<br>
Assistant Computational Scientist<br>
Leadership Computing Facility<br>
Argonne National Laboratory<br>
</font></span></blockquote></div><br></div>