Universal-Assembly-Syntax-H.../src/extension.js
kapitche 43fb2d4a78 Add configurable comment characters for assembly
Introduces new settings for customizing line and block comment characters via VS Code configuration. Updates the extension to dynamically apply these settings and documents the feature in the README. Also bumps the minimum VS Code engine version and extension version.
2025-07-02 14:44:53 -04:00

213 lines
5.6 KiB
JavaScript

const vscode = require("vscode");
const axios = require("axios");
const cheerio = require("cheerio");
const list = require("./mnemonics.js");
let languageConfigDisposable = null;
function activate(context) {
// Set up initial language configuration
updateLanguageConfiguration();
// Listen for configuration changes
const configChangeListener = vscode.workspace.onDidChangeConfiguration(
(event) => {
if (event.affectsConfiguration("assembly.comments")) {
updateLanguageConfiguration();
}
}
);
// Hover provider for mnemonics
const hoverProvider = vscode.languages.registerHoverProvider("x86asm", {
async provideHover(document, position, token) {
const range = document.getWordRangeAtPosition(
position,
/\b[a-zA-Z0-9_]+\b/
);
const word = document.getText(range);
if (word) {
// Check if the word is a valid mnemonic
if (list.x86x64Mnemonics.includes(word.toUpperCase())) {
const instructionInfo = await fetchInstructionInfo(
word.toLowerCase()
);
if (instructionInfo) {
return new vscode.Hover(instructionInfo);
}
} else {
return undefined;
}
}
return undefined;
},
});
// Definition provider (Ctrl+Click to jump)
const definitionProvider = vscode.languages.registerDefinitionProvider(
"x86asm",
{
async provideDefinition(document, position, token) {
const range = document.getWordRangeAtPosition(position);
if (!range) {
return;
}
const word = document.getText(range);
return await findDefinition(word);
},
}
);
context.subscriptions.push(
hoverProvider,
definitionProvider,
configChangeListener
);
}
function updateLanguageConfiguration() {
// Dispose previous language configuration if it exists
if (languageConfigDisposable) {
languageConfigDisposable.dispose();
}
// Get current configuration
const config = vscode.workspace.getConfiguration("assembly.comments");
const lineComment = config.get("lineComment", ";");
const blockComment = config.get("blockComment", ["/*", "*/"]);
// Register new language configuration
languageConfigDisposable = vscode.languages.setLanguageConfiguration(
"x86asm",
{
comments: {
lineComment: lineComment,
blockComment: blockComment,
},
brackets: [
["{", "}"],
["[", "]"],
["(", ")"],
],
autoClosingPairs: [
["{", "}"],
["[", "]"],
["(", ")"],
['"', '"'],
["'", "'"],
],
surroundingPairs: [
["{", "}"],
["[", "]"],
["(", ")"],
['"', '"'],
["'", "'"],
],
folding: {
markers: {
start: "\\.section",
end: "\\.endsection",
},
},
}
);
}
async function fetchInstructionInfo(instruction) {
try {
const url = `https://www.felixcloutier.com/x86/${instruction}`;
const response = await axios.get(url);
const $ = cheerio.load(response.data);
// Extract the title (instruction name)
const instructionTitle = $("h1").text();
// Extract Opcode table and relevant details
const opcodeTable = $("table").first();
const opcode = opcodeTable.find("tr").eq(1).find("td").eq(0).text();
const instructionDescription = opcodeTable
.find("tr")
.eq(1)
.find("td")
.eq(5)
.text();
// Extract the operation section
const operationSection = $("#operation").next("pre").text();
// Extract the description section
const descriptionSection = $("#description").nextUntil("h2", "p").text();
// Combine the extracted information into a formatted output
let hoverContent = `**${instructionTitle}**\n\n`;
hoverContent += `**Opcode:** ${opcode}\n`;
hoverContent += `**Description:** ${instructionDescription}\n\n`;
hoverContent += `**Details:**\n${descriptionSection}\n\n`;
hoverContent += `**Operation:**\n${operationSection}`;
return hoverContent;
} catch (error) {
if (error.response && error.response.status === 404) {
console.warn(`Instruction info not found for: ${instruction}`);
} else {
console.error(`Failed to fetch instruction info: ${error.message}`);
}
return null; // Return null if fetching fails
}
}
async function findDefinition(word) {
// Get all x86 assembly files in the workspace
const files = await vscode.workspace.findFiles(
"**/*.s",
"**/node_modules/**"
);
for (const file of files) {
const document = await vscode.workspace.openTextDocument(file);
const text = document.getText();
const lines = text.split("\n");
// Check for definitions in each file
const location = searchForDefinition(lines, word, document);
if (location) {
return location;
}
}
// If no definition is found, return undefined
return undefined;
}
function searchForDefinition(lines, word, document) {
const externRegex = new RegExp(`^extern\\s+${word}\\s*`, "i");
const globalRegex = new RegExp(`^global\\s+${word}\\s*`, "i");
const labelRegex = new RegExp(`^${word}:`, "i");
for (let i = 0; i < lines.length; i++) {
if (
externRegex.test(lines[i]) ||
globalRegex.test(lines[i]) ||
labelRegex.test(lines[i])
) {
return new vscode.Location(document.uri, new vscode.Position(i, 0));
}
}
return undefined; // If no match is found
}
function deactivate() {
if (languageConfigDisposable) {
languageConfigDisposable.dispose();
}
}
module.exports = {
activate,
deactivate,
};