Skip to content

Commit

Permalink
fix: disassembly-related things
Browse files Browse the repository at this point in the history
- fix isWindows not detecting
- make disassembly instructions be correct
- use a non-integer for disassembly memory references to check that
  vscode handles those correctly
  • Loading branch information
connor4312 committed Sep 7, 2023
1 parent f950a19 commit 2c547a9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/activateMockDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class MockConfigurationProvider implements vscode.DebugConfigurationProvider {
}

export const workspaceFileAccessor: FileAccessor = {
isWindows: false,
isWindows: typeof process !== 'undefined' && process.platform === 'win32',
async readFile(path: string): Promise<Uint8Array> {
let uri: vscode.Uri;
try {
Expand Down
17 changes: 9 additions & 8 deletions src/mockDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -752,22 +752,23 @@ export class MockDebugSession extends LoggingDebugSession {
}

protected disassembleRequest(response: DebugProtocol.DisassembleResponse, args: DebugProtocol.DisassembleArguments) {

const baseAddress = parseInt(args.memoryReference);
const memoryInt = args.memoryReference.slice(3);
const baseAddress = parseInt(memoryInt);
const offset = args.instructionOffset || 0;
const count = args.instructionCount;

const isHex = args.memoryReference.startsWith('0x');
const pad = isHex ? args.memoryReference.length-2 : args.memoryReference.length;
const isHex = memoryInt.startsWith('0x');
const pad = isHex ? memoryInt.length-2 : memoryInt.length;

const loc = this.createSource(this._runtime.sourceFile);

let lastLine = -1;

const instructions = this._runtime.disassemble(baseAddress+offset, count).map(instruction => {
const address = instruction.address.toString(isHex ? 16 : 10).padStart(pad, '0');
let address = Math.abs(instruction.address).toString(isHex ? 16 : 10).padStart(pad, '0');
const sign = instruction.address < 0 ? '-' : '';
const instr : DebugProtocol.DisassembledInstruction = {
address: isHex ? `0x${address}` : `${address}`,
address: sign + (isHex ? `0x${address}` : `${address}`),
instruction: instruction.instruction
};
// if instruction's source starts on a new line add the source to instruction
Expand All @@ -792,7 +793,7 @@ export class MockDebugSession extends LoggingDebugSession {

// set instruction breakpoints
const breakpoints = args.breakpoints.map(ibp => {
const address = parseInt(ibp.instructionReference);
const address = parseInt(ibp.instructionReference.slice(3));
const offset = ibp.offset || 0;
return <DebugProtocol.Breakpoint>{
verified: this._runtime.setInstructionBreakpoint(address + offset)
Expand Down Expand Up @@ -897,7 +898,7 @@ export class MockDebugSession extends LoggingDebugSession {
}

private formatAddress(x: number, pad = 8) {
return this._addressesInHex ? '0x' + x.toString(16).padStart(8, '0') : x.toString(10);
return 'mem' + (this._addressesInHex ? '0x' + x.toString(16).padStart(8, '0') : x.toString(10));
}

private formatNumber(x: number) {
Expand Down
2 changes: 1 addition & 1 deletion src/mockRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export class MockRuntime extends EventEmitter {
file: this._sourceFile,
line: this.currentLine,
column: column, // words[i].index
instruction: instruction
instruction: instruction ? instruction + i : 0
};

frames.push(stackFrame);
Expand Down

0 comments on commit 2c547a9

Please sign in to comment.