Deleted Added
sdiff udiff text old ( 5025:5c264911b7a9 ) new ( 5045:bf06c4d63bf4 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

--- 51 unchanged lines hidden (view full) ---

60
61namespace X86ISA
62{
63 const int NumMicroIntRegs = 16;
64 const int NumPseudoIntRegs = 1;
65
66 const int NumMMXRegs = 8;
67 const int NumXMMRegs = 16;
68 const int NumMicroFpRegs = 8;
69
70 const int NumCRegs = 16;
71 const int NumDRegs = 8;
72
73 const int NumSegments = 6;
74 const int NumSysSegments = 4;
75}
76
77#endif //__ARCH_X86_X86TRAITS_HH__