isa_traits.hh (12408:51e487705276) | isa_traits.hh (12427:b0611f1ad833) |
---|---|
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; --- 31 unchanged lines hidden (view full) --- 40#include "cpu/static_inst_fwd.hh" 41 42namespace AlphaISA { 43 44using namespace LittleEndianGuest; 45 46StaticInstPtr decodeInst(ExtMachInst); 47 | 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; --- 31 unchanged lines hidden (view full) --- 40#include "cpu/static_inst_fwd.hh" 41 42namespace AlphaISA { 43 44using namespace LittleEndianGuest; 45 46StaticInstPtr decodeInst(ExtMachInst); 47 |
48// Alpha Does NOT have a delay slot 49#define ISA_HAS_DELAY_SLOT 0 50 | |
51const Addr PageShift = 13; 52const Addr PageBytes = ULL(1) << PageShift; 53const Addr PageMask = ~(PageBytes - 1); 54const Addr PageOffset = PageBytes - 1; 55 56//////////////////////////////////////////////////////////////////////// 57// 58// Translation stuff --- 64 unchanged lines hidden --- | 48const Addr PageShift = 13; 49const Addr PageBytes = ULL(1) << PageShift; 50const Addr PageMask = ~(PageBytes - 1); 51const Addr PageOffset = PageBytes - 1; 52 53//////////////////////////////////////////////////////////////////////// 54// 55// Translation stuff --- 64 unchanged lines hidden --- |