faults.hh (10417:710ee116eb68) | faults.hh (10687:276da6265ab8) |
---|---|
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_FAULTS_HH__ 41#define __ARCH_X86_FAULTS_HH__ 42 43#include <string> 44 | 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_FAULTS_HH__ 41#define __ARCH_X86_FAULTS_HH__ 42 43#include <string> 44 |
45#include "arch/generic/tlb.hh" |
|
45#include "base/bitunion.hh" 46#include "base/misc.hh" 47#include "sim/faults.hh" | 46#include "base/bitunion.hh" 47#include "base/misc.hh" 48#include "sim/faults.hh" |
48#include "sim/tlb.hh" | |
49 50namespace X86ISA 51{ 52 // Base class for all x86 "faults" where faults is in the m5 sense 53 class X86FaultBase : public FaultBase 54 { 55 protected: 56 const char * faultName; --- 376 unchanged lines hidden --- | 49 50namespace X86ISA 51{ 52 // Base class for all x86 "faults" where faults is in the m5 sense 53 class X86FaultBase : public FaultBase 54 { 55 protected: 56 const char * faultName; --- 376 unchanged lines hidden --- |