Deleted Added
sdiff udiff text old ( 5075:4ae876c5037d ) new ( 5149:356e00996637 )
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 *

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

50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
53 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 * Authors: Gabe Black
56 */
57
58#ifndef __ARCH_X86_X86TRAITS_HH__
59#define __ARCH_X86_X86TRAITS_HH__
60
61namespace X86ISA
62{
63 const int NumMicroIntRegs = 16;
64
65 const int NumPseudoIntRegs = 1;

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

75 const int NumXMMRegs = 16;
76 const int NumMicroFpRegs = 8;
77
78 const int NumCRegs = 16;
79 const int NumDRegs = 8;
80
81 const int NumSegments = 6;
82 const int NumSysSegments = 4;
83}
84
85#endif //__ARCH_X86_X86TRAITS_HH__