16327Sgblack@eecs.umich.edu/*
26327Sgblack@eecs.umich.edu * Copyright (c) 2003-2009 The Regents of The University of Michigan
36327Sgblack@eecs.umich.edu * All rights reserved.
46327Sgblack@eecs.umich.edu *
56327Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
66327Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
76327Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
86327Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
96327Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
106327Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
116327Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
126327Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
136327Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
146327Sgblack@eecs.umich.edu * this software without specific prior written permission.
156327Sgblack@eecs.umich.edu *
166327Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176327Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186327Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196327Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206327Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216327Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226327Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236327Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246327Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256327Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266327Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276327Sgblack@eecs.umich.edu *
286327Sgblack@eecs.umich.edu * Authors: Gabe Black
296327Sgblack@eecs.umich.edu */
306327Sgblack@eecs.umich.edu
316327Sgblack@eecs.umich.edu#ifndef __ARCH_ALPHA_REGREDIR_HH__
326327Sgblack@eecs.umich.edu#define __ARCH_ALPHA_REGREDIR_HH__
336327Sgblack@eecs.umich.edu
346329Sgblack@eecs.umich.edu#include "arch/alpha/registers.hh"
356327Sgblack@eecs.umich.edu
366327Sgblack@eecs.umich.edunamespace AlphaISA {
376327Sgblack@eecs.umich.edu
386327Sgblack@eecs.umich.edu// redirected register map, really only used for the full system case.
396327Sgblack@eecs.umich.eduextern const int reg_redir[NumIntRegs];
406327Sgblack@eecs.umich.edu
416327Sgblack@eecs.umich.edu} // namespace AlphaISA
426327Sgblack@eecs.umich.edu
436327Sgblack@eecs.umich.edu#endif // __ARCH_ALPHA_REGREDIR_HH__
44