rizin/libr/asm/arch/avr/format.c
2016-07-02 02:37:00 +02:00

198 lines
7.8 KiB
C

/*
* vAVRdisasm - AVR program disassembler.
* Version 1.6 - February 2010.
* Written by Vanya A. Sergeev - <vsergeev@gmail.com>
*
* Copyright (C) 2007 Vanya A. Sergeev
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* format_disasm.c - Formatting of disassembled instructions, with regard to the
* several formatting features this disassembler supports.
*
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "format.h"
/* Formats a disassembled operand with its prefix (such as 'R' to indicate a register) into the
* pointer to a C-string strOperand, which must be free'd after it has been used.
* I decided to format the disassembled operands individually into strings for maximum flexibility,
* and so that the printing of the formatted operand is not hard coded into the format operand code.
* If an addressLabelPrefix is specified in formattingOptions (option is set and string is not NULL),
* it will print the relative branch/jump/call with this prefix and the destination address as the label. */
static int formatDisassembledOperand(char *strOperand, int operandNum, const disassembledInstruction dInstruction, formattingOptions fOptions);
/* Prints a disassembled instruction, formatted with options set in the formattingOptions structure. */
static int printDisassembledInstruction(char *out, const disassembledInstruction dInstruction, formattingOptions fOptions) {
//char fmt[64];
int retVal, i;
char strOperand[256];
*out = '\0';
/* If we just found a long instruction, there is nothing to be printed yet, since we don't
* have the entire long address ready yet. */
if (AVR_Long_Instruction == AVR_LONG_INSTRUCTION_FOUND)
return 0;
strcat (out, dInstruction.instruction->mnemonic);
if (dInstruction.instruction->numOperands > 0)
strcat (out, " ");
for (i = 0; i < dInstruction.instruction->numOperands; i++) {
/* If we're not on the first operand, but not on the last one either, print a comma separating
* the operands. */
if (i > 0 && i != dInstruction.instruction->numOperands)
strcat (out, ", ");
/* Format the disassembled operand into the string strOperand, and print it */
retVal = formatDisassembledOperand(strOperand, i, dInstruction, fOptions);
if (retVal < 0)
return retVal;
/* Print the operand and free if it's not NULL */
strcat (out, strOperand);
}
return 1;
}
/* Formats a disassembled operand with its prefix (such as 'R' to indicate a register) into the
* pointer to a C-string strOperand, which must be free'd after it has been used.
* I decided to format the disassembled operands individually into strings for maximum flexibility,
* and so that the printing of the formatted operand is not hard coded into the format operand code.
* If an addressLabelPrefix is specified in formattingOptions (option is set and string is not NULL),
* it will print the relative branch/jump/call with this prefix and the destination address as the label. */
static int formatDisassembledOperand(char *strOperand, int operandNum, const disassembledInstruction dInstruction, formattingOptions fOptions) {
char binary[9];
int retVal;
if (operandNum >= AVR_MAX_NUM_OPERANDS)
return 0;
switch (dInstruction.instruction->operandTypes[operandNum]) {
case OPERAND_NONE:
case OPERAND_REGISTER_GHOST:
strOperand = NULL;
retVal = 0;
break;
case OPERAND_REGISTER:
case OPERAND_REGISTER_STARTR16:
case OPERAND_REGISTER_EVEN_PAIR_STARTR24:
case OPERAND_REGISTER_EVEN_PAIR:
retVal = sprintf (strOperand, "%s%d", OPERAND_PREFIX_REGISTER,
dInstruction.operands[operandNum]);
break;
case OPERAND_DATA:
case OPERAND_COMPLEMENTED_DATA:
if (fOptions.options & FORMAT_OPTION_DATA_BIN) {
int i;
for (i = 7; i >= 0; i--) {
if (dInstruction.operands[operandNum] & (1<<i))
binary[7-i] = '1';
else
binary[7-i] = '0';
}
binary[8] = '\0';
retVal = sprintf(strOperand, "%s%s",
OPERAND_PREFIX_DATA_BIN, binary);
} else if (fOptions.options & FORMAT_OPTION_DATA_DEC) {
retVal = sprintf(strOperand, "%s%d",
OPERAND_PREFIX_DATA_DEC,
dInstruction.operands[operandNum]);
} else {
retVal = sprintf(strOperand, "%s%02x",
OPERAND_PREFIX_DATA_HEX,
dInstruction.operands[operandNum]);
}
break;
case OPERAND_BIT:
retVal = sprintf(strOperand, "%s%d", OPERAND_PREFIX_BIT,
dInstruction.operands[operandNum]);
break;
case OPERAND_BRANCH_ADDRESS:
case OPERAND_RELATIVE_ADDRESS:
#if 0
/* If we have an address label, print it, otherwise just print the
* relative distance to the destination address. */
if ((fOptions.options & FORMAT_OPTION_ADDRESS_LABEL) && fOptions.addressLabelPrefix != NULL) {
retVal = sprintf(strOperand, "%s%0*X",
fOptions.addressLabelPrefix,
fOptions.addressFieldWidth,
dInstruction.address+dInstruction.operands[operandNum]+2);
} else {
#endif
#if 0
/* Check if the operand is greater than 0 so we can print the + sign. */
if (dInstruction.operands[operandNum] > 0) {
//retVal = sprintf(strOperand, "%s+%d", OPERAND_PREFIX_BRANCH_ADDRESS, dInstruction.operands[operandNum]);
//retVal = sprintf(strOperand, "%s+%d (0x%08x)", OPERAND_PREFIX_BRANCH_ADDRESS, dInstruction.operands[operandNum],
// dInstruction.address + dInstruction.operands[operandNum]);
retVal = sprintf(strOperand, "0x%x", dInstruction.address + dInstruction.operands[operandNum]);
} else {
/* Since the operand variable is signed, the negativeness of the distance
* to the destination address has been taken care of in disassembleOperands() */
// retVal = sprintf(strOperand, "%s%d", OPERAND_PREFIX_BRANCH_ADDRESS, dInstruction.operands[operandNum]);
}
#endif
retVal = sprintf(strOperand, "0x%x",
dInstruction.address + dInstruction.operands[operandNum]);
//}
break;
case OPERAND_LONG_ABSOLUTE_ADDRESS:
retVal = sprintf(strOperand, "%s%0*x",
OPERAND_PREFIX_ABSOLUTE_ADDRESS,
fOptions.addressFieldWidth, AVR_Long_Address);
break;
case OPERAND_IO_REGISTER:
retVal = sprintf(strOperand, "%s%02x",
OPERAND_PREFIX_IO_REGISTER,
dInstruction.operands[operandNum]);
break;
case OPERAND_WORD_DATA:
retVal = sprintf (strOperand, "%s%0*x",
OPERAND_PREFIX_WORD_DATA,
fOptions.addressFieldWidth,
dInstruction.operands[operandNum]);
break;
case OPERAND_DES_ROUND:
retVal = sprintf (strOperand, "%s%02x",
OPERAND_PREFIX_WORD_DATA,
dInstruction.operands[operandNum]);
break;
case OPERAND_YPQ:
retVal = sprintf(strOperand, "y+%d",
dInstruction.operands[operandNum]);
break;
case OPERAND_ZPQ:
retVal = sprintf(strOperand, "z+%d",
dInstruction.operands[operandNum]);
break;
case OPERAND_X: retVal = sprintf(strOperand, "x"); break;
case OPERAND_XP: retVal = sprintf(strOperand, "x+"); break;
case OPERAND_MX: retVal = sprintf(strOperand, "-x"); break;
case OPERAND_Y: retVal = sprintf(strOperand, "y"); break;
case OPERAND_YP: retVal = sprintf(strOperand, "y+"); break;
case OPERAND_MY: retVal = sprintf(strOperand, "-y"); break;
case OPERAND_Z: retVal = sprintf(strOperand, "z"); break;
case OPERAND_ZP: retVal = sprintf(strOperand, "z+"); break;
case OPERAND_MZ: retVal = sprintf(strOperand, "-z"); break;
/* This is impossible by normal operation. */
default: return ERROR_UNKNOWN_OPERAND;
}
if (retVal < 0)
return ERROR_MEMORY_ALLOCATION_ERROR;
return 0;
}