mirror of
https://github.com/ksherlock/wdc-utils.git
synced 2024-12-12 04:29:05 +00:00
.sym, .endblock, .endfunc
This commit is contained in:
parent
2accf26798
commit
94efa65576
39
dumpobj.cpp
39
dumpobj.cpp
@ -498,16 +498,49 @@ bool dump_obj(const char *name, int fd)
|
|||||||
printf("\t.block\t%d\n", block);
|
printf("\t.block\t%d\n", block);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case D_C_ENDBLOCK: {
|
||||||
|
uint16_t line = read_16(iter);
|
||||||
|
printf("\t.endblock\t%d\n", line);
|
||||||
|
break;
|
||||||
|
}
|
||||||
case D_C_FUNC: {
|
case D_C_FUNC: {
|
||||||
uint16_t arg = read_16(iter);
|
uint16_t arg = read_16(iter);
|
||||||
printf("\t.function\t%d\n", arg);
|
printf("\t.function\t%d\n", arg);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/*
|
case D_C_ENDFUNC: {
|
||||||
case D_C_SYM: {
|
uint16_t line = read_16(iter);
|
||||||
|
uint16_t local_offset = read_16(iter);
|
||||||
|
uint16_t arg_offset = read_16(iter);
|
||||||
|
printf("\t.endfunc\t%d, %d, %d\n", line, local_offset, arg_offset);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case D_C_SYM: {
|
||||||
|
// warning - i don't fully understand this one..
|
||||||
|
std::string name = read_cstring(iter);
|
||||||
|
uint8_t version = read_8(iter); //???
|
||||||
|
uint32_t value;
|
||||||
|
if (version == 0) value = read_16(iter); // symbol
|
||||||
|
if (version == 1) value = read_32(iter); // numeric value.
|
||||||
|
assert(version == 0 || version == 1);
|
||||||
|
uint32_t type = read_32(iter);
|
||||||
|
uint8_t klass = read_8(iter);
|
||||||
|
uint16_t size = read_16(iter);
|
||||||
|
|
||||||
|
|
||||||
|
if (version == 0) {
|
||||||
|
std::string svalue;
|
||||||
|
svalue = symbols[value].name;
|
||||||
|
printf("\t.sym\t%s, %s, %d, %d, %d\n",
|
||||||
|
name.c_str(), svalue.c_str(), type, klass, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (version == 1)
|
||||||
|
printf("\t.sym\t%s, %d, %d, %d, %d\n",
|
||||||
|
name.c_str(), value, type, klass, size);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
errx(EX_DATAERR, "%s: unknown debug opcode %02x (%d)", name, op, op);
|
errx(EX_DATAERR, "%s: unknown debug opcode %02x (%d)", name, op, op);
|
||||||
|
Loading…
Reference in New Issue
Block a user