reg_class.hh revision 9918
1/* 2 * Copyright (c) 2013 Advanced Micro Devices, Inc. 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; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Steve Reinhardt 29 */ 30 31#ifndef __CPU__REG_CLASS_HH__ 32#define __CPU__REG_CLASS_HH__ 33 34#include <cassert> 35#include <cstddef> 36 37#include "arch/registers.hh" 38#include "config/the_isa.hh" 39 40/// Enumerate the classes of registers. 41enum RegClass { 42 IntRegClass, ///< Integer register 43 FloatRegClass, ///< Floating-point register 44 MiscRegClass ///< Control (misc) register 45}; 46 47/// Number of register classes. This value is not part of the enum, 48/// because putting it there makes the compiler complain about 49/// unhandled cases in some switch statements. 50const int NumRegClasses = MiscRegClass + 1; 51 52/** 53 * Map a 'unified' architectural register index to its register class. 54 * The unified architectural register index space is used to represent 55 * all architectural register identifiers in a single contiguous 56 * index space. See http://gem5.org/Register_Indexing. 57 * 58 * @param reg_idx Unified-space register index 59 * @param rel_reg_idx Optional output param pointer; if non-NULL, location 60 * will be written with the relative register index for reg_idx 61 * 62 * @return Register class of reg_idx 63 */ 64inline 65RegClass regIdxToClass(TheISA::RegIndex reg_idx, 66 TheISA::RegIndex *rel_reg_idx = NULL) 67{ 68 assert(reg_idx < TheISA::Max_Reg_Index); 69 RegClass cl; 70 int offset; 71 72 if (reg_idx < TheISA::FP_Reg_Base) { 73 cl = IntRegClass; 74 offset = 0; 75 } else if (reg_idx < TheISA::Misc_Reg_Base) { 76 cl = FloatRegClass; 77 offset = TheISA::FP_Reg_Base; 78 } else { 79 cl = MiscRegClass; 80 offset = TheISA::Misc_Reg_Base; 81 } 82 83 if (rel_reg_idx) 84 *rel_reg_idx = reg_idx - offset; 85 return cl; 86} 87 88/// Map enum values to strings for debugging 89extern const char *RegClassStrings[]; 90 91 92#endif // __CPU__REG_CLASS_HH__ 93