Path: blob/master/tools/perf/arch/mips/include/dwarf-regs-table.h
26289 views
/* SPDX-License-Identifier: GPL-2.0 */1/*2* dwarf-regs-table.h : Mapping of DWARF debug register numbers into3* register names.4*5* Copyright (C) 2013 Cavium, Inc.6*7* This program is free software; you can redistribute it and/or modify8* it under the terms of the GNU General Public License as published by9* the Free Software Foundation; either version 2 of the License, or10* (at your option) any later version.11*12* This program is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15* GNU General Public License for more details.16*17*/1819#ifdef DEFINE_DWARF_REGSTR_TABLE20#undef REG_DWARFNUM_NAME21#define REG_DWARFNUM_NAME(reg, idx) [idx] = "$" #reg22static const char * const mips_regstr_tbl[] = {23"$0", "$1", "$2", "$3", "$4", "$5", "$6", "$7", "$8", "$9",24"$10", "$11", "$12", "$13", "$14", "$15", "$16", "$17", "$18", "$19",25"$20", "$21", "$22", "$23", "$24", "$25", "$26", "$27", "$28", "%29",26"$30", "$31",27REG_DWARFNUM_NAME(hi, 64),28REG_DWARFNUM_NAME(lo, 65),29};30#endif313233