isa_traits.hh (12408:51e487705276) | isa_traits.hh (12427:b0611f1ad833) |
---|---|
1/* 2 * Copyright (c) 2003-2005 The Regents of The University of Michigan 3 * Copyright (c) 2007 MIPS Technologies, Inc. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 33 unchanged lines hidden (view full) --- 42 43namespace MipsISA 44{ 45 46using namespace LittleEndianGuest; 47 48StaticInstPtr decodeInst(ExtMachInst); 49 | 1/* 2 * Copyright (c) 2003-2005 The Regents of The University of Michigan 3 * Copyright (c) 2007 MIPS Technologies, Inc. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 33 unchanged lines hidden (view full) --- 42 43namespace MipsISA 44{ 45 46using namespace LittleEndianGuest; 47 48StaticInstPtr decodeInst(ExtMachInst); 49 |
50// MIPS DOES have a delay slot 51#define ISA_HAS_DELAY_SLOT 1 52 | |
53const Addr PageShift = 13; 54const Addr PageBytes = ULL(1) << PageShift; 55const Addr Page_Mask = ~(PageBytes - 1); 56const Addr PageOffset = PageBytes - 1; 57 58 59//////////////////////////////////////////////////////////////////////// 60// --- 95 unchanged lines hidden --- | 50const Addr PageShift = 13; 51const Addr PageBytes = ULL(1) << PageShift; 52const Addr Page_Mask = ~(PageBytes - 1); 53const Addr PageOffset = PageBytes - 1; 54 55 56//////////////////////////////////////////////////////////////////////// 57// --- 95 unchanged lines hidden --- |