int.hh (9921:ee049bfce978) int.hh (12334:e0ab29a34764)
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

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

37 * Authors: Gabe Black
38 */
39
40#ifndef __ARCH_X86_INTREGS_HH__
41#define __ARCH_X86_INTREGS_HH__
42
43#include "arch/x86/x86_traits.hh"
44#include "base/bitunion.hh"
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

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

37 * Authors: Gabe Black
38 */
39
40#ifndef __ARCH_X86_INTREGS_HH__
41#define __ARCH_X86_INTREGS_HH__
42
43#include "arch/x86/x86_traits.hh"
44#include "base/bitunion.hh"
45#include "base/misc.hh"
45#include "base/logging.hh"
46#include "sim/core.hh"
47
48namespace X86ISA
49{
50 BitUnion64(X86IntReg)
51 Bitfield<63,0> R;
52 SignedBitfield<63,0> SR;
53 Bitfield<31,0> E;

--- 123 unchanged lines hidden ---
46#include "sim/core.hh"
47
48namespace X86ISA
49{
50 BitUnion64(X86IntReg)
51 Bitfield<63,0> R;
52 SignedBitfield<63,0> SR;
53 Bitfield<31,0> E;

--- 123 unchanged lines hidden ---