isa.hh (8229:78bf55f23338) isa.hh (9376:270c9a75e91f)
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;

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

45
46namespace X86ISA
47{
48 class ISA
49 {
50 protected:
51 MiscReg regVal[NUM_MISCREGS];
52 void updateHandyM5Reg(Efer efer, CR0 cr0,
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;

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

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);
53 SegAttr csAttr, SegAttr ssAttr, RFLAGS rflags,
54 ThreadContext *tc);
54
55 public:
56 void clear();
57
58 ISA()
59 {
60 clear();
61 }

--- 30 unchanged lines hidden ---
55
56 public:
57 void clear();
58
59 ISA()
60 {
61 clear();
62 }

--- 30 unchanged lines hidden ---