search for: 7d840db7

Displaying 2 results from an estimated 2 matches for "7d840db7".

2007 Apr 07
0
[LLVMdev] Register Alias Sets
...the register that the set applies to. If you have the index then you can explicitly add this to the set for your computation. -- Christopher Lamb -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20070407/7d840db7/attachment.html>
2007 Apr 06
5
[LLVMdev] Register Alias Sets
I notice that in X86GenRegisterInfo.inc, the AliasSets do not include the register being queried. For example: const unsigned RAX_AliasSet[] = { X86::EAX, X86::AX, X86::AL, X86::AH, 0 }; const unsigned EAX_AliasSet[] = { X86::RAX, X86::AX, X86::AL, X86::AH, 0 }; This makes it hard to do set comparisons. RAX and EAX really have equivalent alias sets but one wouldn't know that from