Browse Source

fixed bugs

master
Mathieu Serandour 1 year ago
parent
commit
bc4bd20914
  1. 21
      kernel/lib/stacktrace.c
  2. 4
      kernel/parse_symbols.py

21
kernel/lib/stacktrace.c

@ -2,10 +2,11 @@
#include "../memory/vmap.h"
#include "../lib/assert.h"
#include "../lib/dump.h"
#include "../lib/logging.h"
#include "sprintf.h"
#define MAX_STACK_TRACE 15
#define MAX_STACK_TRACE 40
extern uint64_t _rbp(void);
@ -21,7 +22,7 @@ static const struct {
void stacktrace_file(const void* f) {
file = f;
}
}
// offset: output offset
// addr = addr(symbol) + offset
@ -40,8 +41,6 @@ static const char* get_symbol_name(
uint64_t addrA = file->symbols[0].addr;
uint64_t addrB = file->symbols[file->n_symbols - 1].addr;
if(addr < addrA)
return NULL;
if(addr >= addrB) {
@ -49,10 +48,10 @@ static const char* get_symbol_name(
return file->symbols[file->n_symbols - 1].addr;
}
uint64_t C = (A+B)>>2;
while(A+1 != B) {
uint64_t addrC = file->symbols[C].addr;
uint64_t C = (A+B) >> 1;
uint64_t addrC = file->symbols[C].addr;
if(addr < addrC) {
B = C;
@ -62,7 +61,6 @@ static const char* get_symbol_name(
A = C;
addrA = addrC;
}
log_warn("issou");
}
@ -74,10 +72,8 @@ static const char* get_symbol_name(
void stacktrace_print(void) {
void** ptr = (void**)_rbp();
puts("backtrace:\n");
// printf("BAR = %x", bar);
for(unsigned i = 0; i < MAX_STACK_TRACE; i++) {
//printf("oui. %lx ", ptr);
if(*ptr == 0) // reached the top
break;
@ -95,14 +91,13 @@ void stacktrace_print(void) {
printf("%llx ", rip);
unsigned* offset;
const char* symbol = get_symbol_name(rip, &offset);
for(;;);
const char* symbol = get_symbol_name(rip, &offset);
if(symbol)
printf("<%s+%x>", symbol, offset);
printf("<%s + %x>", symbol, offset);
else
printf("<??>");
if(!interrupt_routine)
puts("\n");

4
kernel/parse_symbols.py

@ -31,7 +31,7 @@ for line in f.readlines():
addr = int(words[0], 16)
name = words[2]
outf.write(addr.to_bytes(8, 'big'))
outf.write(addr.to_bytes(8, 'little'))
bin = bytes(name, 'ascii')
@ -50,4 +50,4 @@ for line in f.readlines():
outf.seek(0)
outf.write((n_symbols).to_bytes(8, 'big'))
outf.write((n_symbols).to_bytes(8, 'little'))

Loading…
Cancel
Save