16332Sgblack@eecs.umich.edu/*
26332Sgblack@eecs.umich.edu * Copyright (c) 2003-2009 The Regents of The University of Michigan
36332Sgblack@eecs.umich.edu * All rights reserved.
46332Sgblack@eecs.umich.edu *
56332Sgblack@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
66332Sgblack@eecs.umich.edu * modification, are permitted provided that the following conditions are
76332Sgblack@eecs.umich.edu * met: redistributions of source code must retain the above copyright
86332Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
96332Sgblack@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
106332Sgblack@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
116332Sgblack@eecs.umich.edu * documentation and/or other materials provided with the distribution;
126332Sgblack@eecs.umich.edu * neither the name of the copyright holders nor the names of its
136332Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
146332Sgblack@eecs.umich.edu * this software without specific prior written permission.
156332Sgblack@eecs.umich.edu *
166332Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176332Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186332Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196332Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206332Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216332Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226332Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236332Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246332Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256332Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266332Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276332Sgblack@eecs.umich.edu *
286332Sgblack@eecs.umich.edu * Authors: Steve Reinhardt
296332Sgblack@eecs.umich.edu *          Gabe Black
306332Sgblack@eecs.umich.edu *          Kevin Lim
316332Sgblack@eecs.umich.edu */
326332Sgblack@eecs.umich.edu
336332Sgblack@eecs.umich.edu#include "arch/alpha/regredir.hh"
346332Sgblack@eecs.umich.edu
356332Sgblack@eecs.umich.edunamespace AlphaISA {
366332Sgblack@eecs.umich.edu
376332Sgblack@eecs.umich.educonst int reg_redir[NumIntRegs] = {
386332Sgblack@eecs.umich.edu    /*  0 */ 0, 1, 2, 3, 4, 5, 6, 7,
396332Sgblack@eecs.umich.edu    /*  8 */ 32, 33, 34, 35, 36, 37, 38, 15,
406332Sgblack@eecs.umich.edu    /* 16 */ 16, 17, 18, 19, 20, 21, 22, 23,
416332Sgblack@eecs.umich.edu    /* 24 */ 24, 39, 26, 27, 28, 29, 30, 31 };
426332Sgblack@eecs.umich.edu
436332Sgblack@eecs.umich.edu} // namespace AlphaISA
44