registers.hh (8961:ff4762285f99) registers.hh (9046:a1104cc13db2)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

44#include "arch/x86/regs/int.hh"
45#include "arch/x86/regs/misc.hh"
46#include "arch/x86/x86_traits.hh"
47
48namespace X86ISA
49{
50using X86ISAInst::MaxInstSrcRegs;
51using X86ISAInst::MaxInstDestRegs;
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

44#include "arch/x86/regs/int.hh"
45#include "arch/x86/regs/misc.hh"
46#include "arch/x86/x86_traits.hh"
47
48namespace X86ISA
49{
50using X86ISAInst::MaxInstSrcRegs;
51using X86ISAInst::MaxInstDestRegs;
52using X86ISAInst::MaxMiscDestRegs;
52const int NumMiscArchRegs = NUM_MISCREGS;
53const int NumMiscRegs = NUM_MISCREGS;
54
55const int NumIntArchRegs = NUM_INTREGS;
56const int NumIntRegs =
57 NumIntArchRegs + NumMicroIntRegs +
58 NumPseudoIntRegs + NumImplicitIntRegs;
59

--- 57 unchanged lines hidden ---
53const int NumMiscArchRegs = NUM_MISCREGS;
54const int NumMiscRegs = NUM_MISCREGS;
55
56const int NumIntArchRegs = NUM_INTREGS;
57const int NumIntRegs =
58 NumIntArchRegs + NumMicroIntRegs +
59 NumPseudoIntRegs + NumImplicitIntRegs;
60

--- 57 unchanged lines hidden ---