faults.hh (8229:78bf55f23338) faults.hh (8591:8f23aeaf6a91)
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

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

358 class MachineCheck : public X86Abort
359 {
360 public:
361 MachineCheck() :
362 X86Abort("Machine-Check", "#MC", 18)
363 {}
364 };
365
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

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

358 class MachineCheck : public X86Abort
359 {
360 public:
361 MachineCheck() :
362 X86Abort("Machine-Check", "#MC", 18)
363 {}
364 };
365
366 static inline Fault genMachineCheckFault()
367 {
368 return new MachineCheck;
369 }
370
371 class SIMDFloatingPointFault : public X86Fault
372 {
373 public:
374 SIMDFloatingPointFault() :
375 X86Fault("SIMD Floating-Point", "#XF", 19)
376 {}
377 };
378

--- 61 unchanged lines hidden ---
366 class SIMDFloatingPointFault : public X86Fault
367 {
368 public:
369 SIMDFloatingPointFault() :
370 X86Fault("SIMD Floating-Point", "#XF", 19)
371 {}
372 };
373

--- 61 unchanged lines hidden ---