2021-06-01 14:52:04 +00:00
|
|
|
#include <stdlib.h>
|
2020-03-31 11:48:38 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <types.h>
|
2020-06-21 14:15:17 +00:00
|
|
|
#include "ruamoko/qwaq/debugger/views/defview.h"
|
|
|
|
#include "ruamoko/qwaq/debugger/views/nameview.h"
|
|
|
|
#include "ruamoko/qwaq/debugger/localsdata.h"
|
2020-03-31 11:48:38 +00:00
|
|
|
|
|
|
|
@implementation LocalsData
|
|
|
|
|
|
|
|
-initWithTarget:(qdb_target_t) target
|
|
|
|
{
|
|
|
|
if (!(self = [super init])) {
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
self.target = target;
|
|
|
|
|
|
|
|
qdb_def_t encodings_def = qdb_find_global (target, ".type_encodings");
|
|
|
|
qdb_get_data (target, encodings_def.offset, sizeof(target_encodings),
|
|
|
|
&target_encodings);
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
+(LocalsData *)withTarget:(qdb_target_t)target
|
|
|
|
{
|
|
|
|
return [[[self alloc] initWithTarget:target] autorelease];
|
|
|
|
}
|
|
|
|
|
2021-06-01 14:52:04 +00:00
|
|
|
static void
|
|
|
|
free_defs (LocalsData *self)
|
|
|
|
{
|
|
|
|
obj_free (self.defs);
|
|
|
|
self.defs = nil;
|
|
|
|
for (int i = 0; i < self.aux_func.num_locals; i++) {
|
|
|
|
[self.def_views[i] release];
|
|
|
|
}
|
|
|
|
obj_free (self.def_views);
|
|
|
|
self.def_views = nil;
|
|
|
|
obj_free (self.def_rows);
|
|
|
|
self.def_rows = nil;
|
|
|
|
}
|
|
|
|
|
2020-03-31 11:48:38 +00:00
|
|
|
-(void)dealloc
|
|
|
|
{
|
|
|
|
if (defs) {
|
2021-06-01 14:52:04 +00:00
|
|
|
free_defs (self);
|
2020-03-31 11:48:38 +00:00
|
|
|
}
|
|
|
|
if (data) {
|
|
|
|
obj_free (data);
|
|
|
|
data = nil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-setFunction:(unsigned) fnum
|
|
|
|
{
|
|
|
|
if (current_fnum == fnum) {
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
current_fnum =fnum;
|
|
|
|
|
|
|
|
if (defs) {
|
2021-06-01 14:52:04 +00:00
|
|
|
free_defs (self);
|
2020-03-31 11:48:38 +00:00
|
|
|
}
|
|
|
|
if (data) {
|
|
|
|
obj_free (data);
|
|
|
|
data = nil;
|
|
|
|
}
|
|
|
|
func = qdb_get_function (target, fnum);
|
2021-06-01 14:52:04 +00:00
|
|
|
if (func && func.local_size) {
|
|
|
|
data = obj_malloc (func.local_size);
|
|
|
|
}
|
2020-03-31 11:48:38 +00:00
|
|
|
aux_func = qdb_get_auxfunction (target, fnum);
|
|
|
|
if (aux_func) {
|
|
|
|
defs = qdb_get_local_defs (target, fnum);
|
2021-06-01 14:52:04 +00:00
|
|
|
def_views = obj_malloc (aux_func.num_locals);
|
|
|
|
def_rows = obj_malloc (aux_func.num_locals + 1);
|
|
|
|
def_rows[0] = 0;
|
|
|
|
for (int i = 0; i < aux_func.num_locals; i++) {
|
|
|
|
def_views[i] = [[DefView withDef:defs[i] in:data target:target]
|
|
|
|
retain];
|
|
|
|
def_rows[i + 1] = [def_views[i] rows];
|
|
|
|
}
|
|
|
|
prefixsum (def_rows, aux_func.num_locals + 1);
|
2020-03-31 11:48:38 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2020-03-31 14:23:18 +00:00
|
|
|
-fetchData
|
|
|
|
{
|
2020-04-02 10:31:11 +00:00
|
|
|
if (data && func.local_size && func.local_data) {
|
|
|
|
qdb_get_data (target, func.local_data, func.local_size, data);
|
|
|
|
}
|
2021-06-04 04:35:53 +00:00
|
|
|
if (aux_func) {
|
|
|
|
def_rows[0] = 0;
|
|
|
|
for (int i = 0; i < aux_func.num_locals; i++) {
|
|
|
|
[def_views[i] fetchData];
|
|
|
|
def_rows[i + 1] = [def_views[i] rows];
|
|
|
|
}
|
|
|
|
prefixsum (def_rows, aux_func.num_locals + 1);
|
|
|
|
}
|
2020-03-31 14:23:18 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2020-03-31 11:48:38 +00:00
|
|
|
-(int)numberOfRows:(TableView *)tableview
|
|
|
|
{
|
|
|
|
if (aux_func) {
|
2021-06-01 14:52:04 +00:00
|
|
|
if (!aux_func.num_locals) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return def_rows[aux_func.num_locals];
|
2020-03-31 11:48:38 +00:00
|
|
|
} else if (func) {
|
|
|
|
return (func.local_size + 3) / 4;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(View *)tableView:(TableView *)tableview
|
|
|
|
forColumn:(TableViewColumn *)column
|
|
|
|
row:(int)row
|
|
|
|
{
|
2021-06-01 14:52:04 +00:00
|
|
|
View *view = nil;
|
2021-06-04 04:35:53 +00:00
|
|
|
int *index = fbsearch (&row, def_rows, aux_func.num_locals, 1, nil);
|
2020-03-31 11:48:38 +00:00
|
|
|
|
2021-06-01 14:52:04 +00:00
|
|
|
if (index) {
|
2021-06-04 04:35:53 +00:00
|
|
|
DefView *dv = def_views[index - def_rows];
|
|
|
|
int r = row - *index;
|
|
|
|
view = [dv viewAtRow: r forColumn:column];
|
2020-03-31 11:48:38 +00:00
|
|
|
}
|
|
|
|
[view resizeTo:{[column width], 1}];
|
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|