<span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">On Wed, Aug 15, 2012 at 12:11 PM, Fabian Scheler </span><span dir="ltr" style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><<a href="mailto:fabian.scheler@gmail.com" target="_blank" style="color:rgb(17,85,204)">fabian.scheler@gmail.com</a>></span><span style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">wrote:</span><br style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)">
<div class="gmail_quote" style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px;background-color:rgb(255,255,255)"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Hi LLVM-Folks,<br></blockquote><div> ...</div><div class="im" style="color:rgb(80,0,80)"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
Currently, I am not even able to find out which instruction is messed<br>up here  (dumping the node via the dump-Method yields "<<Unknown<br>Machine Node #65434>>"). Can I use "machine nodes" and "normal nodes"<br>
when lowering a specific instruction within the TargetLowering?</blockquote><div><br></div></div><div>Usually, when I see this type of error in the X86 target, I use the following function to narrow down the search:     </div>
<div><br></div><div>>    /// getTargetNodeName - This method returns the name of a target specific</div><div>>    /// DAG node.</div><div>>    virtual const char *getTargetNodeName(unsigned Opcode) const; </div><div>
<br></div><div>If I'm not mistaken, the normal dump method returns names for ISD Opcodes and not for target specific opcodes, in my case X86ISD Opcodes. </div></div>