<div class="__aliyun_email_body_block"><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Hi Medhi,</span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;"><br ></span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">It looks like a flaw to me. The .bc generated file should be compilable by invoking the clang.</span></div><div  style="clear:both;">I think here are two options:</div><div  style="clear:both;"> - Add an option in clang like the option `-enable-coroutines` in opt.</div><div  style="clear:both;"> - Make coroutine passes run by default in LLVM pipeline.</div><div  style="clear:both;"><br ></div><div  style="clear:both;">It depends on how stable we think Coroutine passes are now. </div><div  style="clear:both;">It shouldn't matter to run coroutine passes for general IR. Coroutine Passes would and should do nothing when they can't find coroutine intrinsics.</div><div  style="clear:both;">In my mind, the reason why the coroutine passes got control by option is that coroutine is an experimental feature. </div><div  style="clear:both;">So we don't want to they to break our workflow. But if we think they are stable, I think we could turn it on by default.</div><div  style="clear:both;">This may need more discussion.</div><div  style="clear:both;"><br ></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Thanks,</span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Chuanqi</span></div><blockquote  style="margin-right:0;margin-top:0;margin-bottom:0;"><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">------------------------------------------------------------------</span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">From:Mehdi AMINI <joker.eph@gmail.com></span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Send Time:2021年7月9日(星期五) 10:02</span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">To:John McCall <rjmccall@apple.com></span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Cc:Xun Li <lxfind@gmail.com>; David Blaikie <dblaikie@gmail.com>; Arthur Eubanks <aeubanks@google.com>; chuanqi.xcq <yedeng.yd@linux.alibaba.com>; cfe-dev <cfe-dev@lists.llvm.org></span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;">Subject:Re: [cfe-dev] Compile .ll file with coroutines intrinsics</span></div><div  style="clear:both;"><span  style="font-family:Tahoma,Arial,STHeiti,SimSun;font-size:14.0px;color:#000000;"><br ></span></div><div ><div ><br ></div><br ><div  class="gmail_quote"><div  class="gmail_attr">On Thu, Jul 8, 2021 at 6:56 PM John McCall <<a  href="mailto:rjmccall@apple.com" target="_blank">rjmccall@apple.com</a>> wrote:<br ></div>On 8 Jul 2021, at 20:13, Mehdi AMINI wrote:<br >
> On Thu, Jul 8, 2021 at 4:40 PM Xun Li <<a  href="mailto:lxfind@gmail.com" target="_blank">lxfind@gmail.com</a>> wrote:<br >
><br >
>> Not sure if I fully understand the question. Do you have a full<br >
>> example of what you expect but doesn't work?<br >
>> Are you trying to compile C++ code that uses coroutines, or are you<br >
>> trying to use opt to compile an .ll file?<br >
>><br >
><br >
> I'm trying to compile IR (.ll or .bc) file: clang support IR as *input* as<br >
> well.<br >
><br >
> So for example with the case you mention:<br >
><br >
> clang -emit-llvm  -c    -O3  -Xclang -disable-llvm-passes<br >
> clang/test/CodeGenCoroutines/coro-symmetric-transfer-01.cpp -std=c++20 -o<br >
> coro.bc<br >
><br >
> This gets me a nice coro.bc file, but I have no way to compile this with<br >
> clang right now, it will always crash:<br >
><br >
> $ clang -c coro.bc<br >
> PLEASE submit a bug report to <a  href="https://bugs.llvm.org/" target="_blank">https://bugs.llvm.org/</a> and include the crash<br >
> backtrace, preprocessed source, and associated run script.<br >
> Stack dump:<br >
> 0. Program arguments: clang -c coro.bc<br >
> 1. Code generation<br >
> 2. Running pass 'Function Pass Manager' on module 'coro.bc'.<br >
> 3. Running pass 'X86 DAG->DAG Instruction Selection' on function '@_Z3foov'<br >
> Segmentation fault<br ><br >
Coroutines do push the boundaries of LLVM IR in the sense that<br >
(1) there’s a mandatory lowering sequence and (2) because of the<br >
complexity of that lowering, the IR prior to that sequence is<br >
much more of an internal representation than a stable format.<br >
With that said, I don’t know of any inherent reason why running<br >
the coroutine passes multiple times would be a problem.  It’s<br >
probably just some bit of coroutine bookkeeping (the attribute?)<br >
that we fail to remove after lowering.<br ><br >
Also, the exact form of the crash is surprising; I don’t know<br >
why running lowering multiple times would add new things that<br >
ISel wouldn’t recognize.<br ><div ><br ></div><div >Right now this isn't running it multiple times, it is instead never running it, the backend crashes because ISel does not know about these intrinsics (I think we should be friendlier in the failure mode, but that's another story).</div><div ><br ></div><div >I use clang to emit IR without running any pass (this is the ` -Xclang -disable-llvm-passes` part of the invocation).</div><div ><br ></div><div > Then I'd like to use clang to "resume" compilation of this file, but clang does not allow me to have an IR input file and run these passes: this is what I'd like to fix. One option I had in the original email in this thread was to change clang to honor `-fcoroutines-ts` when the input is an IR file.</div><div ><br ></div><div >-- </div><div >Mehdi</div><div ><br ></div><div > </div><br >
John.<br ></div></div></blockquote><div ><br ></div></div>