Can you try making the constructor "explicit" for PrintReg in include/llvm/Target/TargetRegisterInfo.h. I think you were getting an implicit conversion there which should probably be fixed anyway.<br><br><div class="gmail_quote">
On Mon, Nov 26, 2012 at 11:47 PM, Bjorn De Sutter <span dir="ltr"><<a href="mailto:bjorn.desutter@elis.ugent.be" target="_blank">bjorn.desutter@elis.ugent.be</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi,<br>
<br>
that solved my problem on trunk as well, thanks. Strange that you have to include this though.<br>
<br>
Bjorn<br>
<br>
On 27 Nov 2012, at 00:00, Daniel Prokesch <<a href="mailto:daniel.prokesch@gmail.com">daniel.prokesch@gmail.com</a>> wrote:<br>
<br>
> Hi,<br>
><br>
> I accidentally stumbled upon your post.<br>
> I observed similar behaviour whenever I did not include<br>
><br>
> #include "llvm/Support/Debug.h"<br>
> #include "llvm/Support/raw_ostream.h"<br>
><br>
> I'm working on release 3.1 though.<br>
><br>
> hth, Daniel<br>
<div class="HOEnZb"><div class="h5">><br>
> On 11/26/2012 03:00 PM, Bjorn De Sutter wrote:<br>
>> Hi,<br>
>><br>
>> I am trying to debug my backend, and observe very strange behavior with dbgs():<br>
>><br>
>> In the IfConverter, I have added two debugging lines that print floating-point numbers for the sake of demonstration that such printing works fine.<br>
>><br>
>> bool MeetIfcvtSizeLimit(MachineBasicBlock &BB,<br>
>>                             unsigned Cycle, unsigned Extra,<br>
>>                             const BranchProbability &Prediction) const {<br>
>><br>
>>                 dbgs() << "OOPS " << 1.14 << "\n";<br>
>>                 bool flag =  Cycle > 0 && TII->isProfitableToIfCvt(BB, Cycle, Extra,<br>
>>                                                    Prediction);<br>
>>                 dbgs() << "OOPS " << 1.15 << "\n";<br>
>>       return flag;<br>
>>     }<br>
>><br>
>> This method invokes the backend method<br>
>><br>
>> bool ADRESInstrInfo::isProfitableToIfCvt(MachineBasicBlock &MBB, unsigned NumCycles, unsigned ExtraPredCycles,<br>
>>                                          const BranchProbability &Probability) const {<br>
>>      dbgs() << "OOPS " << 1.16 << "\n";<br>
>> }<br>
>><br>
>> This invocation works as it should (verified with gdb). But when I execute this code fragment, I get<br>
>><br>
>> OOPS 1.140000e+00<br>
>> OOPS %physreg1<br>
>> OOPS 1.150000e+00<br>
>><br>
>> So suddenly in the machine backend, the dbgs() ostream (which is still the very same ostream as in the IfConverter, I checked the address with gdb) prints floating point numbers as if they are physical registers. Any idea what is going on or how I can force floating-point numbers to be printed in the backend code? I want to do that to tune my if-predication heuristics ...<br>

>><br>
>> By the way, when I step through the isProfitableToIfCvt method, rather than invoking a <<-operator in an ostream class, the constructor of the Twine class is invoked ...<br>
>><br>
>> Thanks,<br>
>><br>
>> Bjorn De Sutter<br>
>> Computer Systems Lab<br>
>> Ghent University<br>
>><br>
>><br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> LLVM Developers mailing list<br>
>> <a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
>> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
><br>
<br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:LLVMdev@cs.uiuc.edu">LLVMdev@cs.uiuc.edu</a>         <a href="http://llvm.cs.uiuc.edu" target="_blank">http://llvm.cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br>~Craig<br>