Deleted Added
sdiff udiff text old ( 2680:246e7104f744 ) new ( 3272:c28038eaefb8 )
full compact
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 */
30
31#ifndef __ARCH_SPARC_UTILITY_HH__
32#define __ARCH_SPARC_UTILITY_HH__
33
34#include "arch/sparc/isa_traits.hh"
35#include "base/misc.hh"
36
37namespace SparcISA
38{
39 inline ExtMachInst
40 makeExtMI(MachInst inst, const Addr &pc) {
41 return ExtMachInst(inst);
42 }
43
44 inline bool isCallerSaveIntegerRegister(unsigned int reg) {
45 panic("register classification not implemented");
46 return false;
47 }
48
49 inline bool isCalleeSaveIntegerRegister(unsigned int reg) {

--- 42 unchanged lines hidden ---