isa_traits.hh (12427:b0611f1ad833) isa_traits.hh (13912:53531772924f)
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;

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

56
57/////////// TLB Stuff ////////////
58const Addr StartVAddrHole = ULL(0x0000800000000000);
59const Addr EndVAddrHole = ULL(0xFFFF7FFFFFFFFFFF);
60const Addr VAddrAMask = ULL(0xFFFFFFFF);
61const Addr PAddrImplMask = ULL(0x000000FFFFFFFFFF);
62const Addr BytesInPageMask = ULL(0x1FFF);
63
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;

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

56
57/////////// TLB Stuff ////////////
58const Addr StartVAddrHole = ULL(0x0000800000000000);
59const Addr EndVAddrHole = ULL(0xFFFF7FFFFFFFFFFF);
60const Addr VAddrAMask = ULL(0xFFFFFFFF);
61const Addr PAddrImplMask = ULL(0x000000FFFFFFFFFF);
62const Addr BytesInPageMask = ULL(0x1FFF);
63
64enum InterruptTypes
65{
66 IT_TRAP_LEVEL_ZERO,
67 IT_HINTP,
68 IT_INT_VEC,
69 IT_CPU_MONDO,
70 IT_DEV_MONDO,
71 IT_RES_ERROR,
72 IT_SOFT_INT,
73 NumInterruptTypes
74};
75
76// Memory accesses cannot be unaligned
77const bool HasUnalignedMemAcc = false;
78
79const bool CurThreadInfoImplemented = false;
80const int CurThreadInfoReg = -1;
81
82}
83
84#endif // __ARCH_SPARC_ISA_TRAITS_HH__
64// Memory accesses cannot be unaligned
65const bool HasUnalignedMemAcc = false;
66
67const bool CurThreadInfoImplemented = false;
68const int CurThreadInfoReg = -1;
69
70}
71
72#endif // __ARCH_SPARC_ISA_TRAITS_HH__