isa.hh revision 6359:1e4908b3e28e
1/* 2 * Copyright (c) 2009 The Regents of The University of Michigan 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions are 7 * met: redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Gabe Black 29 */ 30 31#ifndef __ARCH_X86_ISA_HH__ 32#define __ARCH_X86_ISA_HH__ 33 34#include "arch/x86/floatregs.hh" 35#include "arch/x86/miscregs.hh" 36#include "arch/x86/registers.hh" 37#include "base/types.hh" 38 39#include <string> 40#include <iostream> 41 42class Checkpoint; 43class EventManager; 44class ThreadContext; 45 46namespace X86ISA 47{ 48 class ISA 49 { 50 protected: 51 MiscReg regVal[NUM_MISCREGS]; 52 void updateHandyM5Reg(Efer efer, CR0 cr0, 53 SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags); 54 55 public: 56 void clear(); 57 58 ISA() 59 { 60 clear(); 61 } 62 63 MiscReg readMiscRegNoEffect(int miscReg); 64 MiscReg readMiscReg(int miscReg, ThreadContext *tc); 65 66 void setMiscRegNoEffect(int miscReg, MiscReg val); 67 void setMiscReg(int miscReg, MiscReg val, ThreadContext *tc); 68 69 int 70 flattenIntIndex(int reg) 71 { 72 return reg & ~(1 << 6); 73 } 74 75 int 76 flattenFloatIndex(int reg) 77 { 78 if (reg >= NUM_FLOATREGS) { 79 reg = FLOATREG_STACK(reg - NUM_FLOATREGS, 80 regVal[MISCREG_X87_TOP]); 81 } 82 return reg; 83 } 84 85 void serialize(EventManager *em, std::ostream &os); 86 void unserialize(EventManager *em, Checkpoint *cp, 87 const std::string §ion); 88 }; 89} 90 91#endif 92