isa_traits.hh (3804:fa7a01dddc7a) isa_traits.hh (3808:3406c3ffa645)
1/*
2 * Copyright (c) 2003-2005 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;

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

28 * Authors: Gabe Black
29 * Ali Saidi
30 */
31
32#ifndef __ARCH_SPARC_ISA_TRAITS_HH__
33#define __ARCH_SPARC_ISA_TRAITS_HH__
34
35#include "arch/sparc/types.hh"
1/*
2 * Copyright (c) 2003-2005 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;

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

28 * Authors: Gabe Black
29 * Ali Saidi
30 */
31
32#ifndef __ARCH_SPARC_ISA_TRAITS_HH__
33#define __ARCH_SPARC_ISA_TRAITS_HH__
34
35#include "arch/sparc/types.hh"
36#include "base/misc.hh"
36#include "arch/sparc/sparc_traits.hh"
37#include "config/full_system.hh"
37#include "config/full_system.hh"
38#include "sim/host.hh"
39
38
40class ThreadContext;
41class FastCPU;
42//class FullCPU;
43class Checkpoint;
44
45class StaticInst;
46class StaticInstPtr;
47
48namespace BigEndianGuest {}
49
50namespace SparcISA
51{
52 class RegFile;
53
54 //This makes sure the big endian versions of certain functions are used.
55 using namespace BigEndianGuest;
56
57 // SPARC has a delay slot
58 #define ISA_HAS_DELAY_SLOT 1
59
60 // SPARC NOP (sethi %(hi(0), g0)
61 const MachInst NoopMachInst = 0x01000000;
62
39class StaticInstPtr;
40
41namespace BigEndianGuest {}
42
43namespace SparcISA
44{
45 class RegFile;
46
47 //This makes sure the big endian versions of certain functions are used.
48 using namespace BigEndianGuest;
49
50 // SPARC has a delay slot
51 #define ISA_HAS_DELAY_SLOT 1
52
53 // SPARC NOP (sethi %(hi(0), g0)
54 const MachInst NoopMachInst = 0x01000000;
55
63 const int NumRegularIntRegs = 32;
64 const int NumMicroIntRegs = 1;
65 const int NumIntRegs =
66 NumRegularIntRegs +
67 NumMicroIntRegs;
68 const int NumFloatRegs = 64;
69 const int NumMiscRegs = 40;
70
71 // These enumerate all the registers for dependence tracking.
72 enum DependenceTags {
56 // These enumerate all the registers for dependence tracking.
57 enum DependenceTags {
73 // 0..31 are the integer regs 0..31
74 // 32..95 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag)
75 FP_Base_DepTag = NumIntRegs,
76 Ctrl_Base_DepTag = NumIntRegs + NumMicroIntRegs + NumFloatRegs,
58 FP_Base_DepTag = 33,
59 Ctrl_Base_DepTag = 97,
77 };
78
60 };
61
79
80 // MAXTL - maximum trap level
81 const int MaxPTL = 2;
82 const int MaxTL = 6;
83 const int MaxGL = 3;
84 const int MaxPGL = 2;
85
86 // NWINDOWS - number of register windows, can be 3 to 32
87 const int NWindows = 8;
88
89 // semantically meaningful register indices
90 const int ZeroReg = 0; // architecturally meaningful
91 // the rest of these depend on the ABI
92 const int StackPointerReg = 14;
93 const int ReturnAddressReg = 31; // post call, precall is 15
94 const int ReturnValueReg = 8; // Post return, 24 is pre-return.
95 const int FramePointerReg = 30;
96 const int ArgumentReg0 = 8;

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

108
109 //8K. This value is implmentation specific; and should probably
110 //be somewhere else.
111 const int LogVMPageSize = 13;
112 const int VMPageSize = (1 << LogVMPageSize);
113
114 //Why does both the previous set of constants and this one exist?
115 const int PageShift = 13;
62 // semantically meaningful register indices
63 const int ZeroReg = 0; // architecturally meaningful
64 // the rest of these depend on the ABI
65 const int StackPointerReg = 14;
66 const int ReturnAddressReg = 31; // post call, precall is 15
67 const int ReturnValueReg = 8; // Post return, 24 is pre-return.
68 const int FramePointerReg = 30;
69 const int ArgumentReg0 = 8;

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

81
82 //8K. This value is implmentation specific; and should probably
83 //be somewhere else.
84 const int LogVMPageSize = 13;
85 const int VMPageSize = (1 << LogVMPageSize);
86
87 //Why does both the previous set of constants and this one exist?
88 const int PageShift = 13;
116 const int PageBytes = ULL(1) << PageShift;
89 const int PageBytes = 1ULL << PageShift;
117
118 const int BranchPredAddrShiftAmt = 2;
119
90
91 const int BranchPredAddrShiftAmt = 2;
92
120 const int MachineBytes = 8;
121 const int WordBytes = 4;
122 const int HalfwordBytes = 2;
123 const int ByteBytes = 1;
124
125 void serialize(std::ostream & os);
126
127 void unserialize(Checkpoint *cp, const std::string &section);
128
129 StaticInstPtr decodeInst(ExtMachInst);
130
93 StaticInstPtr decodeInst(ExtMachInst);
94
131 // return a no-op instruction... used for instruction fetch faults
132 extern const MachInst NoopMachInst;
133
134#if FULL_SYSTEM
135 ////////// Interrupt Stuff ///////////
136 enum InterruptLevels
137 {
138 INTLEVEL_MIN = 1,
139 INTLEVEL_MAX = 15,
140
141 NumInterruptLevels = INTLEVEL_MAX - INTLEVEL_MIN

--- 18 unchanged lines hidden ---
95#if FULL_SYSTEM
96 ////////// Interrupt Stuff ///////////
97 enum InterruptLevels
98 {
99 INTLEVEL_MIN = 1,
100 INTLEVEL_MAX = 15,
101
102 NumInterruptLevels = INTLEVEL_MAX - INTLEVEL_MIN

--- 18 unchanged lines hidden ---