<div dir="ltr">Hi!<div><br></div><div>Sorry I've taken so long to reply.</div><div><br></div><div>We have used an old version (3.9) of llvm and clang and rebased our code to the newest master changes. Now we are able to emit the IR, but compiling IR with llc leads to following error:</div><div><br></div><div><div><span class="gmail-Apple-tab-span" style="white-space:pre">  </span>$ ../../llvm/build/debug/bin/llc test.ll</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">       </span>  inlinable function call in a function with debug info must have a !dbg location</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">             </span>call void @_ZN12MyFunnyClassC2EvCloned(%struct.MyFunnyClass* %0)</div><div><span class="gmail-Apple-tab-span" style="white-space:pre">       </span>  ../../llvm/build/debug/bin/llc: test.ll: error: input module is broken!</div></div><div><br></div><div>To reproduce the error, here is a link to our gist: <a href="https://gist.github.com/ewokhias/3ec3eb19d5d3a7c1cba5ce58e5040d8c">https://gist.github.com/ewokhias/3ec3eb19d5d3a7c1cba5ce58e5040d8c</a> . This is not our actual code, be we've created something similar. </div><div>In clang we set metadata for each consructor and in our FunctionPass (adapted skeleton pass from: <a href="https://github.com/sampsyo/llvm-pass-skeleton/">https://github.com/sampsyo/llvm-pass-skeleton/</a>), we create a new function for annotated constructors and use CloneFunctionInto to copy the instructions. In our original code, we add an extra parameter to the copied function, but the error occurs even without this newly added parameter.</div><div><br></div><div>Thanks for helping.</div><div>BR Matthias</div></div><div class="gmail_extra"><br><div class="gmail_quote">2017-06-21 18:54 GMT+02:00 Sergei Larin via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
Adrian,<br>
<br>
  Yes, Indeed something like this work:<br>
<br>
    if (!DIFinder && II->getDebugLoc()) {<br>
      auto &MD = VMap.MD();<br>
      MD[II->getDebugLoc()].reset(<wbr>II->getDebugLoc());<br>
    }<br>
<br>
It fixes the test and produces much cleaner IR. My lit tests are also green. I would love to see this addition to the llvm::CloneBasicBlock unless someone has specific objections.<br>
<br>
Thank you for helping.<br>
<span class="im HOEnZb"><br>
Sergei<br>
<br>
-----Original Message-----<br>
From: <a href="mailto:aprantl@apple.com">aprantl@apple.com</a> [mailto:<a href="mailto:aprantl@apple.com">aprantl@apple.com</a>]<br>
</span><div class="HOEnZb"><div class="h5">Sent: Tuesday, June 20, 2017 11:21 AM<br>
To: llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><br>
Cc: Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>>; David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>>; Keno Fischer <<a href="mailto:keno@juliacomputing.com">keno@juliacomputing.com</a>><br>
Subject: Re: [llvm-dev] CloneFunctionInto produces invalid debug info<br>
<br>
> On Jun 20, 2017, at 8:05 AM, Adrian Prantl via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> I was just going to say: With well-formed debug info it should create a deep copy up until the DISubprogram, but no further. But because the DISubprogram linked to the Function is missing the special handling of the DISubprogram (that would prohibit cloning the DICompileUnit is side-stepped).<br>
> But then I remembered the discussion we had in <a href="http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20170306/435395.html" rel="noreferrer" target="_blank">http://lists.llvm.org/<wbr>pipermail/llvm-commits/Week-<wbr>of-Mon-20170306/435395.html</a> and now I think that this might actually be legal IR.<br>
><br>
> With this in mind, the correct behavior for CloneFunction is to not remap any debug metadata (and just attach the original nodes) if it is cloning into the same Module *and* there is not DISubprogram attached to the function.<br>
><br>
<br>
I haven't tested this, but something like this should work:<br>
<br>
diff --git a/lib/Transforms/Utils/<wbr>CloneFunction.cpp b/lib/Transforms/Utils/<wbr>CloneFunction.cpp<br>
index 314c990293c..64c3c5371e1 100644<br>
--- a/lib/Transforms/Utils/<wbr>CloneFunction.cpp<br>
+++ b/lib/Transforms/Utils/<wbr>CloneFunction.cpp<br>
@@ -50,7 +50,8 @@ BasicBlock *llvm::CloneBasicBlock(const BasicBlock *BB, ValueToValueMapTy &VMap,<br>
   // Loop over all instructions, and copy them over.<br>
   for (BasicBlock::const_iterator II = BB->begin(), IE = BB->end();<br>
        II != IE; ++II) {<br>
-<br>
+    if (!DIFinder && II->getDebugLoc())<br>
+      VMap.MD[II->getDebugLoc()].<wbr>reset(II->getDebugLoc());<br>
     if (DIFinder && F->getParent() && II->getDebugLoc())<br>
       DIFinder->processLocation(*F-><wbr>getParent(), II->getDebugLoc().get());<br>
<br>
DIFinder is null iff the Function doesn't have a DISubprogram. By entering the the DebugLocs into the ValueMap prior to cloning they should not get remapped/cloned.<br>
<br>
-- adrian<br>
<br>
<br>
> -- adrian<br>
><br>
>> On Jun 20, 2017, at 7:52 AM, Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>> wrote:<br>
>><br>
>> Adrian,<br>
>><br>
>> Thank you for the explanation. The example is produced by yet another pass and I will further debug it there...<br>
>><br>
>> Nevertheless, should it not the deep copy of debug locations (once it has created the new DICompileUnit) updated the <a href="http://llvm.dbg.cu" rel="noreferrer" target="_blank">llvm.dbg.cu</a> in this case?<br>
>><br>
>> Sergei<br>
>><br>
>> -----Original Message-----<br>
>> From: <a href="mailto:aprantl@apple.com">aprantl@apple.com</a> [mailto:<a href="mailto:aprantl@apple.com">aprantl@apple.com</a>]<br>
>> Sent: Monday, June 19, 2017 5:00 PM<br>
>> To: Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>><br>
>> Cc: llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>>; Keno Fischer<br>
>> <<a href="mailto:keno@juliacomputing.com">keno@juliacomputing.com</a>><br>
>> Subject: Re: [llvm-dev] CloneFunctionInto produces invalid debug info<br>
>><br>
>> - old Keno<br>
>> +current Keno<br>
>>> On Jun 19, 2017, at 2:59 PM, Adrian Prantl <<a href="mailto:aprantl@apple.com">aprantl@apple.com</a>> wrote:<br>
>>><br>
>>> In your example the instructions in the cloned function have debug locations belonging to a different function, and the function itself is missing a DISubprogram metadata attachment.<br>
>>><br>
>>>> (lldb) p OldFunc->dump()<br>
>>>><br>
>>>> ; Function Attrs: nounwind optsize<br>
>>>> define internal void @f_1.extracted_region(i32, i32*, %struct.t_c*,<br>
>>>> %struct.t_d*) #0 {<br>
>>>> if.end12.extracted_entry:<br>
>>>> %and14 = and i32 %0, 2, !dbg !89<br>
>>>> %tobool15 = icmp eq i32 %and14, 0, !dbg !89  br i1 %tobool15, label<br>
>>>> %exit, label %if.then16, !dbg !185<br>
>>>><br>
>>>> if.then16:                                        ; preds = %if.end12.extracted_entry<br>
>>>> %4 = load i32, i32* %1, align 4, !dbg !186<br>
>>>> %or18 = or i32 %4, 2, !dbg !186<br>
>>>> store i32 %or18, i32* %1, align 4, !dbg !186  %pps = getelementptr<br>
>>>> inbounds %struct.t_c, %struct.t_c* %2, i32 0, i32 4, !dbg !188<br>
>>>> %5 = load i32, i32* %pps, align 8, !dbg !188<br>
>>>> %to20 = getelementptr inbounds %struct.t_d, %struct.t_d* %3, i32 0,<br>
>>>> i32 2, i32 0, i32 0, !dbg !189  store i32 %5, i32* %to20, align 4,<br>
>>>> !dbg !190  %pp = getelementptr inbounds %struct.t_c, %struct.t_c*<br>
>>>> %2,<br>
>>>> i32 0, i32 2, !dbg !191<br>
>>>> %6 = load i8, i8* %pp, align 8, !dbg !191  %us = getelementptr<br>
>>>> inbounds %struct.t_d, %struct.t_d* %3, i32 0, i32 2, i32 0, i32 1,<br>
>>>> !dbg !192  store i8 %6, i8* %us, align 4, !dbg !193  br label<br>
>>>> %exit, !dbg !194<br>
>>>><br>
>>>> exit:                                             ; preds = %if.then16, %if.end12.extracted_entry<br>
>>>> ret void<br>
>>>> }<br>
>>><br>
>>><br>
>>> Apparently the Verifier currently doesn't reject this, but this is not valid. If you want the debug info to survive you should create a new DISubprogram for the .extracted_region function and reparent the debug locations of the instructions into it, or you should strip all debug info from the function and its instructions.<br>
>>> Otherwise (as in the example) CloneFunction will not properly seed the metadata value mapper because the DISubprogram is missing. This then causes a deep copy of the debug locations all the way up to the DICompileUnit to be made.<br>
>>><br>
>>> -- adrian<br>
>>><br>
>>>> On Jun 16, 2017, at 2:00 PM, Adrian Prantl via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
>>>><br>
>>>> The if you are cloning into the same LLVM module the CU should not cloned. If don't mind sharing your code, I can try to help diagnose why the CU gets cloned... just send me a patch that applies to trunk and instructions.<br>
>>>><br>
>>>> -- adrian<br>
>>>><br>
>>>>> On Jun 16, 2017, at 1:54 PM, Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>> wrote:<br>
>>>>><br>
>>>>> Sorry… It takes a pass that was not accepted for upstreaming…. It uses CloneFunctionInto with module level flag on. In the input IR there is a strangely formed (but correct) debug info MD that causes duplication of existing DICompileUnit during cloning, but <a href="http://llvm.dbg.cu" rel="noreferrer" target="_blank">llvm.dbg.cu</a> is not updated. I got around by a quick cleanup pass that detects the situation and simply adds them in… Something like this:<br>
>>>>><br>
>>>>> auto *CUs = F->getParent()-><wbr>getNamedMetadata("<a href="http://llvm.dbg.cu" rel="noreferrer" target="_blank">llvm.dbg.cu</a>"<wbr>);<br>
>>>>> if (!CUs)<br>
>>>>> return;<br>
>>>>><br>
>>>>> SmallPtrSet<Metadata *, 2> Listed; Listed.insert(CUs->op_begin(),<br>
>>>>> CUs->op_end());<br>
>>>>><br>
>>>>> for (auto *CU : CUVisited)<br>
>>>>> if (!Listed.count(CU)) {<br>
>>>>>   auto *Op = dyn_cast<MDNode>(CU);<br>
>>>>>   CUs->addOperand(Op);  <<<<<<<<<<<<<<<<<<<<<<< }<br>
>>>>><br>
>>>>> Sorry, I realize this is not much help.<br>
>>>>><br>
>>>>> Sergei<br>
>>>>><br>
>>>>> From: <a href="mailto:aprantl@apple.com">aprantl@apple.com</a> [mailto:<a href="mailto:aprantl@apple.com">aprantl@apple.com</a>]<br>
>>>>> Sent: Thursday, June 15, 2017 5:25 PM<br>
>>>>> To: Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>><br>
>>>>> Cc: Keno Fischer <<a href="mailto:keno@juliacomputing.com">keno@juliacomputing.com</a>>;<br>
>>>>> <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
>>>>> Subject: Re: [llvm-dev] CloneFunctionInto produces invalid debug<br>
>>>>> info<br>
>>>>><br>
>>>>> Can you send me a patch with instructions to reproduce? I can take a look.<br>
>>>>><br>
>>>>> -- adrian<br>
>>>>>> On Jun 15, 2017, at 2:23 PM, Sergei Larin <<a href="mailto:slarin@codeaurora.org">slarin@codeaurora.org</a>> wrote:<br>
>>>>>><br>
>>>>>> Yes, it does for us. My tree is couple days off the tip, and I see it there.<br>
>>>>>><br>
>>>>>> Sergei<br>
>>>>>><br>
>>>>>> From: llvm-dev [mailto:<a href="mailto:llvm-dev-bounces@lists.llvm.org">llvm-dev-bounces@<wbr>lists.llvm.org</a>] On Behalf<br>
>>>>>> Of Keno Fischer via llvm-dev<br>
>>>>>> Sent: Thursday, June 15, 2017 1:25 PM<br>
>>>>>> To: Adrian Prantl <<a href="mailto:aprantl@apple.com">aprantl@apple.com</a>><br>
>>>>>> Cc: llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>><br>
>>>>>> Subject: Re: [llvm-dev] CloneFunctionInto produces invalid debug<br>
>>>>>> info<br>
>>>>>><br>
>>>>>> This all looks very similar to a bug in the cloning stuff I fixed recently, so would be indeed good to know if this is still happening on master.<br>
>>>>>><br>
>>>>>> On Thu, Jun 15, 2017 at 2:23 PM, Adrian Prantl via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
>>>>>>> If you are doing this work based off LLVM trunk, could you send me your patch to reproduce the problem?<br>
>>>>>>><br>
>>>>>>> -- adrian<br>
>>>>>>>> On Jun 15, 2017, at 8:31 AM, Matthias Bernad via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br>
>>>>>>>><br>
>>>>>>>> Hi!<br>
>>>>>>>><br>
>>>>>>>> We are currently working on a science project and implemented a FunctionPass that clones a function (more precisely a constructor of a struct/class) and adds a parameter.<br>
>>>>>>>><br>
>>>>>>>> First, we create a new function with a new function type, which includes the newly added parameter:<br>
>>>>>>>><br>
>>>>>>>>> Function *NF = Function::Create(NewFTy, F.getLinkage(),<br>
>>>>>>>>> F.getName() + "Cloned", F.getParent());<br>
>>>>>>>><br>
>>>>>>>> and after setting up the ValueToValueMapTy, we use the<br>
>>>>>>>> CloneFunctionInto method to clone the function body<br>
>>>>>>>><br>
>>>>>>>>> CloneFunctionInto(NF, &F, Map, true, Returns, "Cloned");<br>
>>>>>>>><br>
>>>>>>>> The code seems to work as intended, but when we try to emit debug symbols (clang -g flag) the pass fails with following message:<br>
>>>>>>>><br>
>>>>>>>>> "All DICompileUnits must be listed in <a href="http://llvm.dbg.cu" rel="noreferrer" target="_blank">llvm.dbg.cu</a>"<br>
>>>>>>>><br>
>>>>>>>> Nevertheless, we can dump the Module and therefore can print out the annotated IR.<br>
>>>>>>>><br>
>>>>>>>> This is what the function to be cloned looks like:<br>
>>>>>>>><br>
>>>>>>>>> ; Function Attrs: noinline nounwind uwtable define<br>
>>>>>>>>> linkonce_odr void @_ZN12MyFunnyClassC2Ev(%<wbr>struct.MyFunnyClass*<br>
>>>>>>>>> %this) unnamed_addr #4 comdat align 2 !dbg !46 {<br>
>>>>>>>>> entry:<br>
>>>>>>>>> %this.addr = alloca %struct.MyFunnyClass*, align 8 store<br>
>>>>>>>>> %struct.MyFunnyClass* %this, %struct.MyFunnyClass**<br>
>>>>>>>>> %this.addr, align 8 call void @llvm.dbg.declare(metadata<br>
>>>>>>>>> %struct.MyFunnyClass** %this.addr, metadata !49, metadata<br>
>>>>>>>>> !31), !dbg !50 ... rest of function code }<br>
>>>>>>>>><br>
>>>>>>>>> !46 = distinct !DISubprogram(name: "MyFunnyClass", linkageName:<br>
>>>>>>>>> "_ZN12MyFunnyClassC2Ev", scope: !15, file: !1, line: 1, type:<br>
>>>>>>>>> !25, isLocal: false, isDefinition: true, scopeLine: 1, flags:<br>
>>>>>>>>> DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit:<br>
>>>>>>>>> !0, declaration: !47, variables: !2)<br>
>>>>>>>><br>
>>>>>>>> and the cloned function:<br>
>>>>>>>><br>
>>>>>>>>> ; Function Attrs: noinline nounwind uwtable define<br>
>>>>>>>>> linkonce_odr void<br>
>>>>>>>>> @_ZN12MyFunnyClassC2EvCloned(%<wbr>struct.MyFunnyClass* %this, {<br>
>>>>>>>>> [6 x i8*] }* %newparam) unnamed_addr #4 align 2 !dbg !73 {<br>
>>>>>>>>> entry:<br>
>>>>>>>>> %this.addr = alloca %struct.MyFunnyClass*, align 8 store<br>
>>>>>>>>> %struct.MyFunnyClass* %this, %struct.MyFunnyClass**<br>
>>>>>>>>> %this.addr, align 8 call void @llvm.dbg.declare(metadata<br>
>>>>>>>>> %struct.MyFunnyClass** %this.addr, metadata !89, metadata<br>
>>>>>>>>> !31), !dbg !91 ... rest of function code }<br>
>>>>>>>>><br>
>>>>>>>>> !73 = distinct !DISubprogram(name: "MyFunnyClass", linkageName:<br>
>>>>>>>>> "_ZN12MyFunnyClassC2Ev", scope: !74, file: !1, line: 1, type:<br>
>>>>>>>>> !81, isLocal: false, isDefinition: true, scopeLine: 1, flags:<br>
>>>>>>>>> DIFlagArtificial | DIFlagPrototyped, isOptimized: false, unit:<br>
>>>>>>>>> !87, declaration: !88, variables: !2)<br>
>>>>>>>>><br>
>>>>>>>> So the cloned function gets annotated with debug symbols as expected. We noticed that the linkageName of the cloned function is the same as the original one's. Could that cause the error mentioned above? If so, how can we fix that error?<br>
>>>>>>>><br>
>>>>>>>> Best regards and thanks in advance, Matthias<br>
>>>>>>>> ______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> ______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
>>>>>>><br>
>>>><br>
>>>> ______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
>>><br>
>><br>
>><br>
><br>
> ______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
<br>
<br>
______________________________<wbr>_________________<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/<wbr>mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div>