Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/perf/util/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  dwarf-regs-powerpc.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Mapping of DWARF debug register numbers into register names.
 *
 * Copyright (C) 2010 Ian Munsie, IBM Corporation.
 */


#include <dwarf-regs.h>

#define PPC_OP(op) (((op) >> 26) & 0x3F)
#define PPC_RA(a) (((a) >> 16) & 0x1f)
#define PPC_RT(t) (((t) >> 21) & 0x1f)
#define PPC_RB(b) (((b) >> 11) & 0x1f)
#define PPC_D(D) ((D) & 0xfffe)
#define PPC_DS(DS) ((DS) & 0xfffc)
#define OP_LD 58
#define OP_STD 62

static int get_source_reg(u32 raw_insn)
{
 return PPC_RA(raw_insn);
}

static int get_target_reg(u32 raw_insn)
{
 return PPC_RT(raw_insn);
}

static int get_offset_opcode(u32 raw_insn)
{
 int opcode = PPC_OP(raw_insn);

 /* DS- form */
 if ((opcode == OP_LD) || (opcode == OP_STD))
  return PPC_DS(raw_insn);
 else
  return PPC_D(raw_insn);
}

/*
 * Fills the required fields for op_loc depending on if it
 * is a source or target.
 * D form: ins RT,D(RA) -> src_reg1 = RA, offset = D, dst_reg1 = RT
 * DS form: ins RT,DS(RA) -> src_reg1 = RA, offset = DS, dst_reg1 = RT
 * X form: ins RT,RA,RB -> src_reg1 = RA, src_reg2 = RB, dst_reg1 = RT
 */

void get_powerpc_regs(u32 raw_insn, int is_source,
  struct annotated_op_loc *op_loc)
{
 if (is_source)
  op_loc->reg1 = get_source_reg(raw_insn);
 else
  op_loc->reg1 = get_target_reg(raw_insn);

 if (op_loc->multi_regs)
  op_loc->reg2 = PPC_RB(raw_insn);

 /* TODO: Implement offset handling for X Form */
 if ((op_loc->mem_ref) && (PPC_OP(raw_insn) != 31))
  op_loc->offset = get_offset_opcode(raw_insn);
}

Messung V0.5
C=93 H=94 G=93

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.