All, Where are the SSE instructions defined? Specifically, I cannot find the def for ADDSDrr. Aran -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 194 bytes Desc: This is a digitally signed message part. URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100326/130b2e02/attachment.sig>
On Mar 26, 2010, at 11:54 AM, Aran Clauson wrote:> All, > Where are the SSE instructions defined? Specifically, I > cannot find the def for ADDSDrr.http://llvm.org/docs/TableGenFundamentals.html#multiclass
Hi Aran,> Where are the SSE instructions defined? Specifically, I > cannot find the def for ADDSDrr.take a look at X86InstrSSE.td, lines 1,472 and 1,425 ff. ADDSDrr is defined as part of a multiclass [1] record, that's why simple grep'ing doesn't work. :-) Christoph [1] http://llvm.org/docs/TableGenFundamentals.html#multiclass