LEFT | RIGHT |
(no file at all) | |
1 // Inferno utils/6c/6.out.h | 1 // Inferno utils/6c/6.out.h |
2 // http://code.google.com/p/inferno-os/source/browse/utils/6c/6.out.h | 2 // http://code.google.com/p/inferno-os/source/browse/utils/6c/6.out.h |
3 // | 3 // |
4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. | 4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. |
5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) | 5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) |
6 // Portions Copyright © 1997-1999 Vita Nuova Limited | 6 // Portions Copyright © 1997-1999 Vita Nuova Limited |
7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) | 7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov
a.com) |
8 // Portions Copyright © 2004,2006 Bruce Ellis | 8 // Portions Copyright © 2004,2006 Bruce Ellis |
9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) | 9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) |
10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others | 10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others |
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 AAESIMC, | 754 AAESIMC, |
755 AAESKEYGENASSIST, | 755 AAESKEYGENASSIST, |
756 | 756 |
757 APSHUFD, | 757 APSHUFD, |
758 APCLMULQDQ, | 758 APCLMULQDQ, |
759 ········ | 759 ········ |
760 AUSEFIELD, | 760 AUSEFIELD, |
761 ATYPE, | 761 ATYPE, |
762 AFUNCDATA, | 762 AFUNCDATA, |
763 APCDATA, | 763 APCDATA, |
| 764 ACHECKNIL, |
764 ········ | 765 ········ |
765 ALAST | 766 ALAST |
766 }; | 767 }; |
767 | 768 |
768 enum | 769 enum |
769 { | 770 { |
770 | 771 |
771 D_AL = 0, | 772 D_AL = 0, |
772 D_CL, | 773 D_CL, |
773 D_DL, | 774 D_DL, |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
894 * this is the simulated IEEE floating point | 895 * this is the simulated IEEE floating point |
895 */ | 896 */ |
896 typedef struct ieee Ieee; | 897 typedef struct ieee Ieee; |
897 struct ieee | 898 struct ieee |
898 { | 899 { |
899 int32 l; /* contains ls-man 0xffffffff */ | 900 int32 l; /* contains ls-man 0xffffffff */ |
900 int32 h; /* contains sign 0x80000000 | 901 int32 h; /* contains sign 0x80000000 |
901 exp 0x7ff00000 | 902 exp 0x7ff00000 |
902 ms-man 0x000fffff */ | 903 ms-man 0x000fffff */ |
903 }; | 904 }; |
LEFT | RIGHT |