isa_traits.hh (9040:cdfe09f9bdee) isa_traits.hh (9057:f5ee56466b91)
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;

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

45
46// This makes sure the big endian versions of certain functions are used.
47using namespace BigEndianGuest;
48
49// SPARC has a delay slot
50#define ISA_HAS_DELAY_SLOT 1
51
52// SPARC NOP (sethi %(hi(0), g0)
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;

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

45
46// This makes sure the big endian versions of certain functions are used.
47using namespace BigEndianGuest;
48
49// SPARC has a delay slot
50#define ISA_HAS_DELAY_SLOT 1
51
52// SPARC NOP (sethi %(hi(0), g0)
53extern const StaticInstPtr NoopStaticInst;
53const MachInst NoopMachInst = 0x01000000;
54
55// 8K. This value is implmentation specific; and should probably
56// be somewhere else.
57const int LogVMPageSize = 13;
58const int VMPageSize = (1 << LogVMPageSize);
59
60// real address virtual mapping
61// sort of like alpha super page, but less frequently used

--- 35 unchanged lines hidden ---
54
55// 8K. This value is implmentation specific; and should probably
56// be somewhere else.
57const int LogVMPageSize = 13;
58const int VMPageSize = (1 << LogVMPageSize);
59
60// real address virtual mapping
61// sort of like alpha super page, but less frequently used

--- 35 unchanged lines hidden ---