mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2026-05-17 21:17:28 -04:00
120 lines
5.1 KiB
TypeScript
120 lines
5.1 KiB
TypeScript
// Copyright (c) 2017, Compiler Explorer Authors
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the distribution.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
import {MapFileReader} from './map-file.js';
|
|
|
|
export class MapFileReaderDelphi extends MapFileReader {
|
|
regexDelphiCodeSegmentOffset = /^\s([\da-f]*):([\da-f]*)\s*([\da-f]*)h\s*(\.[$a-z]*)\s*([a-z]*)$/i;
|
|
regexDelphiCodeSegment = /^\s([\da-f]*):([\da-f]*)\s*([\da-f]*)\s*c=code\s*s=.text\s*g=.*m=([\w.]*)\s.*/i;
|
|
regexDelphiICodeSegment = /^\s([\da-f]*):([\da-f]*)\s*([\da-f]*)\s*c=icode\s*s=.itext\s*g=.*m=([\w.]*)\s.*/i;
|
|
regexDelphiNames = /^\s([\da-f]*):([\da-f]*)\s*([\w$.<>@{}]*)$/i;
|
|
regexDelphiLineNumbersStart = /line numbers for (.*)\(.*\) segment \.text/i;
|
|
regexDelphiLineNumber = /^(\d*)\s([\da-f]*):([\da-f]*)/i;
|
|
regexDelphiLineNumbersStartIText = /line numbers for (.*)\(.*\) segment \.itext/i;
|
|
|
|
/**
|
|
* Tries to match the given line to code segment information
|
|
* Matches in order:
|
|
* 1. segment offset info
|
|
* 2. code segment delphi map
|
|
* 3. icode segment delphi map
|
|
* 4. code segment vs map
|
|
*/
|
|
override tryReadingCodeSegmentInfo(line: string) {
|
|
let matches = line.match(this.regexDelphiCodeSegmentOffset);
|
|
if (matches && !matches[4].includes('$') && Number.parseInt(matches[2], 16) >= this.preferredLoadAddress) {
|
|
const addressWithOffset = Number.parseInt(matches[2], 16);
|
|
this.segmentOffsets.push({
|
|
segment: matches[1],
|
|
addressInt: addressWithOffset,
|
|
address: addressWithOffset.toString(16),
|
|
segmentLength: Number.parseInt(matches[3], 16),
|
|
});
|
|
} else {
|
|
matches = line.match(this.regexDelphiCodeSegment);
|
|
if (matches) {
|
|
this.segments.push({
|
|
...this.addressToObject(matches[1], matches[2]),
|
|
id: this.segments.length + 1,
|
|
segmentLength: Number.parseInt(matches[3], 16),
|
|
unitName: matches[4] === 'prog' ? 'prog.dpr' : matches[4] + '.pas',
|
|
});
|
|
} else {
|
|
matches = line.match(this.regexDelphiICodeSegment);
|
|
if (matches) {
|
|
this.isegments.push({
|
|
...this.addressToObject(matches[1], matches[2]),
|
|
id: this.isegments.length + 1,
|
|
segmentLength: Number.parseInt(matches[3], 16),
|
|
unitName: matches[4] === 'prog' ? 'prog.dpr' : matches[4] + '.pas',
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Try to match information about the address where a symbol is
|
|
*/
|
|
override tryReadingNamedAddress(line: string) {
|
|
const matches = line.match(this.regexDelphiNames);
|
|
if (matches) {
|
|
if (!this.getSymbolInfoByName(matches[3])) {
|
|
this.namedAddresses.push({
|
|
...this.addressToObject(matches[1], matches[2]),
|
|
displayName: matches[3],
|
|
segmentLength: 0,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
override isStartOfLineNumbers(line: string) {
|
|
const matches = line.match(this.regexDelphiLineNumbersStart);
|
|
return !!matches;
|
|
}
|
|
|
|
/**
|
|
* Retreives line number references from supplied Map line
|
|
*/
|
|
override tryReadingLineNumbers(line: string) {
|
|
let hasLineNumbers = false;
|
|
|
|
const references = line.split(' '); // 4 spaces
|
|
for (const reference of references) {
|
|
const matches = reference.match(this.regexDelphiLineNumber);
|
|
if (matches) {
|
|
this.lineNumbers.push({
|
|
...this.addressToObject(matches[2], matches[3]),
|
|
lineNumber: Number.parseInt(matches[1], 10),
|
|
});
|
|
|
|
hasLineNumbers = true;
|
|
}
|
|
}
|
|
|
|
return hasLineNumbers;
|
|
}
|
|
}
|