mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-29 06:17:48 +00:00
Enable RGBGFX's CLI "at-files" for all programs (#1848)
This commit is contained in:
701
src/asm/main.cpp
701
src/asm/main.cpp
@@ -19,8 +19,8 @@
|
||||
#include <vector>
|
||||
|
||||
#include "backtrace.hpp"
|
||||
#include "cli.hpp"
|
||||
#include "diagnostics.hpp"
|
||||
#include "extern/getopt.hpp"
|
||||
#include "helpers.hpp"
|
||||
#include "parser.hpp" // Generated from parser.y
|
||||
#include "platform.hpp"
|
||||
@@ -40,13 +40,17 @@
|
||||
|
||||
Options options;
|
||||
|
||||
static char const *dependFileName = nullptr; // -M
|
||||
static std::unordered_map<std::string, std::vector<StateFeature>> stateFileSpecs; // -s
|
||||
// Flags which must be processed after the option parsing finishes
|
||||
static struct LocalOptions {
|
||||
std::optional<std::string> dependFileName; // -M
|
||||
std::unordered_map<std::string, std::vector<StateFeature>> stateFileSpecs; // -s
|
||||
std::optional<std::string> inputFileName; // <file>
|
||||
} localOptions;
|
||||
|
||||
// Short options
|
||||
static char const *optstring = "B:b:D:Eg:hI:M:o:P:p:Q:r:s:VvW:wX:";
|
||||
|
||||
// Variables for the long-only options
|
||||
// Long-only option variable
|
||||
static int longOpt; // `--color` and variants of `-M`
|
||||
|
||||
// Equivalent long options
|
||||
@@ -105,134 +109,6 @@ static Usage usage = {
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
// LCOV_EXCL_START
|
||||
static void verboseOutputConfig(int argc, char *argv[]) {
|
||||
if (!checkVerbosity(VERB_CONFIG)) {
|
||||
return;
|
||||
}
|
||||
|
||||
style_Set(stderr, STYLE_MAGENTA, false);
|
||||
|
||||
fprintf(stderr, "rgbasm %s\n", get_package_version_string());
|
||||
|
||||
printVVVVVVerbosity();
|
||||
|
||||
fputs("Options:\n", stderr);
|
||||
// -E/--export-all
|
||||
if (options.exportAll) {
|
||||
fputs("\tExport all labels by default\n", stderr);
|
||||
}
|
||||
// -b/--binary-digits
|
||||
if (options.binDigits[0] != '0' || options.binDigits[1] != '1') {
|
||||
fprintf(
|
||||
stderr, "\tBinary digits: '%c', '%c'\n", options.binDigits[0], options.binDigits[1]
|
||||
);
|
||||
}
|
||||
// -g/--gfx-chars
|
||||
if (options.gfxDigits[0] != '0' || options.gfxDigits[1] != '1' || options.gfxDigits[2] != '2'
|
||||
|| options.gfxDigits[3] != '3') {
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tGraphics characters: '%c', '%c', '%c', '%c'\n",
|
||||
options.gfxDigits[0],
|
||||
options.gfxDigits[1],
|
||||
options.gfxDigits[2],
|
||||
options.gfxDigits[3]
|
||||
);
|
||||
}
|
||||
// -Q/--q-precision
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tFixed-point precision: Q%d.%" PRIu8 "\n",
|
||||
32 - options.fixPrecision,
|
||||
options.fixPrecision
|
||||
);
|
||||
// -p/--pad-value
|
||||
fprintf(stderr, "\tPad value: 0x%02" PRIx8 "\n", options.padByte);
|
||||
// -r/--recursion-depth
|
||||
fprintf(stderr, "\tMaximum recursion depth %zu\n", options.maxRecursionDepth);
|
||||
// -X/--max-errors
|
||||
if (options.maxErrors) {
|
||||
fprintf(stderr, "\tMaximum %" PRIu64 " errors\n", options.maxErrors);
|
||||
}
|
||||
// -D/--define
|
||||
static bool hasDefines = false; // `static` so `sym_ForEach` callback can see it
|
||||
sym_ForEach([](Symbol &sym) {
|
||||
if (!sym.isBuiltin && sym.type == SYM_EQUS) {
|
||||
if (!hasDefines) {
|
||||
fputs("\tDefinitions:\n", stderr);
|
||||
hasDefines = true;
|
||||
}
|
||||
fprintf(stderr, "\t - def %s equs \"%s\"\n", sym.name.c_str(), sym.getEqus()->c_str());
|
||||
}
|
||||
});
|
||||
// -s/--state
|
||||
if (!stateFileSpecs.empty()) {
|
||||
fputs("\tOutput state files:\n", stderr);
|
||||
static char const *featureNames[NB_STATE_FEATURES] = {
|
||||
"equ",
|
||||
"var",
|
||||
"equs",
|
||||
"char",
|
||||
"macro",
|
||||
};
|
||||
for (auto const &[name, features] : stateFileSpecs) {
|
||||
fprintf(stderr, "\t - %s: ", name == "-" ? "<stdout>" : name.c_str());
|
||||
for (size_t i = 0; i < features.size(); ++i) {
|
||||
if (i > 0) {
|
||||
fputs(", ", stderr);
|
||||
}
|
||||
fputs(featureNames[features[i]], stderr);
|
||||
}
|
||||
putc('\n', stderr);
|
||||
}
|
||||
}
|
||||
// asmfile
|
||||
if (musl_optind < argc) {
|
||||
fprintf(stderr, "\tInput asm file: %s", argv[musl_optind]);
|
||||
if (musl_optind + 1 < argc) {
|
||||
fprintf(stderr, " (and %d more)", argc - musl_optind - 1);
|
||||
}
|
||||
putc('\n', stderr);
|
||||
}
|
||||
// -o/--output
|
||||
if (!options.objectFileName.empty()) {
|
||||
fprintf(stderr, "\tOutput object file: %s\n", options.objectFileName.c_str());
|
||||
}
|
||||
fstk_VerboseOutputConfig();
|
||||
if (dependFileName) {
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tOutput dependency file: %s\n",
|
||||
strcmp(dependFileName, "-") ? dependFileName : "<stdout>"
|
||||
);
|
||||
// -MT or -MQ
|
||||
if (!options.targetFileName.empty()) {
|
||||
fprintf(stderr, "\tTarget file(s): %s\n", options.targetFileName.c_str());
|
||||
}
|
||||
// -MG or -MC
|
||||
switch (options.missingIncludeState) {
|
||||
case INC_ERROR:
|
||||
fputs("\tExit with an error on a missing dependency\n", stderr);
|
||||
break;
|
||||
case GEN_EXIT:
|
||||
fputs("\tExit normally on a missing dependency\n", stderr);
|
||||
break;
|
||||
case GEN_CONTINUE:
|
||||
fputs("\tContinue processing after a missing dependency\n", stderr);
|
||||
break;
|
||||
}
|
||||
// -MP
|
||||
if (options.generatePhonyDeps) {
|
||||
fputs("\tGenerate phony dependencies\n", stderr);
|
||||
}
|
||||
}
|
||||
fputs("Ready.\n", stderr);
|
||||
|
||||
style_Reset(stderr);
|
||||
}
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
static std::string escapeMakeChars(std::string &str) {
|
||||
std::string escaped;
|
||||
size_t pos = 0;
|
||||
@@ -295,6 +171,332 @@ static std::vector<StateFeature> parseStateFeatures(char *str) {
|
||||
return features;
|
||||
}
|
||||
|
||||
static void parseArg(int ch, char *arg) {
|
||||
switch (ch) {
|
||||
case 'B':
|
||||
if (!trace_ParseTraceDepth(arg)) {
|
||||
fatal("Invalid argument for option '-B'");
|
||||
}
|
||||
break;
|
||||
|
||||
case 'b':
|
||||
if (strlen(arg) == 2) {
|
||||
opt_B(arg);
|
||||
} else {
|
||||
fatal("Must specify exactly 2 characters for option '-b'");
|
||||
}
|
||||
break;
|
||||
|
||||
case 'D': {
|
||||
char *equals = strchr(arg, '=');
|
||||
if (equals) {
|
||||
*equals = '\0';
|
||||
sym_AddString(arg, std::make_shared<std::string>(equals + 1));
|
||||
} else {
|
||||
sym_AddString(arg, std::make_shared<std::string>("1"));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 'E':
|
||||
options.exportAll = true;
|
||||
break;
|
||||
|
||||
case 'g':
|
||||
if (strlen(arg) == 4) {
|
||||
opt_G(arg);
|
||||
} else {
|
||||
fatal("Must specify exactly 4 characters for option '-g'");
|
||||
}
|
||||
break;
|
||||
|
||||
// LCOV_EXCL_START
|
||||
case 'h':
|
||||
usage.printAndExit(0);
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
case 'I':
|
||||
fstk_AddIncludePath(arg);
|
||||
break;
|
||||
|
||||
case 'M':
|
||||
if (localOptions.dependFileName) {
|
||||
warnx(
|
||||
"Overriding dependency file \"%s\"",
|
||||
*localOptions.dependFileName == "-" ? "<stdout>"
|
||||
: localOptions.dependFileName->c_str()
|
||||
);
|
||||
}
|
||||
localOptions.dependFileName = arg;
|
||||
break;
|
||||
|
||||
case 'o':
|
||||
if (options.objectFileName) {
|
||||
warnx("Overriding output file \"%s\"", options.objectFileName->c_str());
|
||||
}
|
||||
options.objectFileName = arg;
|
||||
break;
|
||||
|
||||
case 'P':
|
||||
fstk_AddPreIncludeFile(arg);
|
||||
break;
|
||||
|
||||
case 'p':
|
||||
if (std::optional<uint64_t> padByte = parseWholeNumber(arg); !padByte) {
|
||||
fatal("Invalid argument for option '-p'");
|
||||
} else if (*padByte > 0xFF) {
|
||||
fatal("Argument for option '-p' must be between 0 and 0xFF");
|
||||
} else {
|
||||
opt_P(*padByte);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'Q': {
|
||||
char const *precisionArg = arg;
|
||||
if (precisionArg[0] == '.') {
|
||||
++precisionArg;
|
||||
}
|
||||
|
||||
if (std::optional<uint64_t> precision = parseWholeNumber(precisionArg); !precision) {
|
||||
fatal("Invalid argument for option '-Q'");
|
||||
} else if (*precision < 1 || *precision > 31) {
|
||||
fatal("Argument for option '-Q' must be between 1 and 31");
|
||||
} else {
|
||||
opt_Q(*precision);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 'r':
|
||||
if (std::optional<uint64_t> maxDepth = parseWholeNumber(arg); !maxDepth) {
|
||||
fatal("Invalid argument for option '-r'");
|
||||
} else if (errno == ERANGE) {
|
||||
fatal("Argument for option '-r' is out of range");
|
||||
} else {
|
||||
options.maxRecursionDepth = *maxDepth;
|
||||
}
|
||||
break;
|
||||
|
||||
case 's': {
|
||||
// Split "<features>:<name>" so `arg` is "<features>" and `name` is "<name>"
|
||||
char *name = strchr(arg, ':');
|
||||
if (!name) {
|
||||
fatal("Invalid argument for option '-s'");
|
||||
}
|
||||
*name++ = '\0';
|
||||
|
||||
std::vector<StateFeature> features = parseStateFeatures(arg);
|
||||
|
||||
if (localOptions.stateFileSpecs.find(name) != localOptions.stateFileSpecs.end()) {
|
||||
warnx("Overriding state file \"%s\"", name);
|
||||
}
|
||||
localOptions.stateFileSpecs.emplace(name, std::move(features));
|
||||
break;
|
||||
}
|
||||
|
||||
// LCOV_EXCL_START
|
||||
case 'V':
|
||||
printf("rgbasm %s\n", get_package_version_string());
|
||||
exit(0);
|
||||
|
||||
case 'v':
|
||||
incrementVerbosity();
|
||||
break;
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
case 'W':
|
||||
opt_W(arg);
|
||||
break;
|
||||
|
||||
case 'w':
|
||||
warnings.state.warningsEnabled = false;
|
||||
break;
|
||||
|
||||
case 'X':
|
||||
if (std::optional<uint64_t> maxErrors = parseWholeNumber(arg); !maxErrors) {
|
||||
fatal("Invalid argument for option '-X'");
|
||||
} else if (*maxErrors > UINT64_MAX) {
|
||||
fatal("Argument for option '-X' must be between 0 and %" PRIu64, UINT64_MAX);
|
||||
} else {
|
||||
options.maxErrors = *maxErrors;
|
||||
}
|
||||
break;
|
||||
|
||||
case 0: // Long-only options
|
||||
switch (longOpt) {
|
||||
case 'c':
|
||||
if (!style_Parse(arg)) {
|
||||
fatal("Invalid argument for option '--color'");
|
||||
}
|
||||
break;
|
||||
|
||||
case 'C':
|
||||
options.missingIncludeState = GEN_CONTINUE;
|
||||
break;
|
||||
|
||||
case 'G':
|
||||
options.missingIncludeState = GEN_EXIT;
|
||||
break;
|
||||
|
||||
case 'P':
|
||||
options.generatePhonyDeps = true;
|
||||
break;
|
||||
|
||||
case 'Q':
|
||||
case 'T': {
|
||||
std::string newTarget = arg;
|
||||
if (longOpt == 'Q') {
|
||||
newTarget = escapeMakeChars(newTarget);
|
||||
}
|
||||
if (options.targetFileName) {
|
||||
*options.targetFileName += ' ';
|
||||
*options.targetFileName += newTarget;
|
||||
} else {
|
||||
options.targetFileName = newTarget;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
case 1: // Positional argument
|
||||
if (localOptions.inputFileName) {
|
||||
usage.printAndExit("More than one input file specified");
|
||||
}
|
||||
localOptions.inputFileName = arg;
|
||||
break;
|
||||
|
||||
// LCOV_EXCL_START
|
||||
default:
|
||||
usage.printAndExit(1);
|
||||
// LCOV_EXCL_STOP
|
||||
}
|
||||
}
|
||||
|
||||
// LCOV_EXCL_START
|
||||
static void verboseOutputConfig() {
|
||||
if (!checkVerbosity(VERB_CONFIG)) {
|
||||
return;
|
||||
}
|
||||
|
||||
style_Set(stderr, STYLE_MAGENTA, false);
|
||||
|
||||
fprintf(stderr, "rgbasm %s\n", get_package_version_string());
|
||||
|
||||
printVVVVVVerbosity();
|
||||
|
||||
fputs("Options:\n", stderr);
|
||||
// -E/--export-all
|
||||
if (options.exportAll) {
|
||||
fputs("\tExport all labels by default\n", stderr);
|
||||
}
|
||||
// -b/--binary-digits
|
||||
if (options.binDigits[0] != '0' || options.binDigits[1] != '1') {
|
||||
fprintf(
|
||||
stderr, "\tBinary digits: '%c', '%c'\n", options.binDigits[0], options.binDigits[1]
|
||||
);
|
||||
}
|
||||
// -g/--gfx-chars
|
||||
if (options.gfxDigits[0] != '0' || options.gfxDigits[1] != '1' || options.gfxDigits[2] != '2'
|
||||
|| options.gfxDigits[3] != '3') {
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tGraphics characters: '%c', '%c', '%c', '%c'\n",
|
||||
options.gfxDigits[0],
|
||||
options.gfxDigits[1],
|
||||
options.gfxDigits[2],
|
||||
options.gfxDigits[3]
|
||||
);
|
||||
}
|
||||
// -Q/--q-precision
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tFixed-point precision: Q%d.%" PRIu8 "\n",
|
||||
32 - options.fixPrecision,
|
||||
options.fixPrecision
|
||||
);
|
||||
// -p/--pad-value
|
||||
fprintf(stderr, "\tPad value: 0x%02" PRIx8 "\n", options.padByte);
|
||||
// -r/--recursion-depth
|
||||
fprintf(stderr, "\tMaximum recursion depth %zu\n", options.maxRecursionDepth);
|
||||
// -X/--max-errors
|
||||
if (options.maxErrors) {
|
||||
fprintf(stderr, "\tMaximum %" PRIu64 " errors\n", options.maxErrors);
|
||||
}
|
||||
// -D/--define
|
||||
static bool hasDefines = false; // `static` so `sym_ForEach` callback can see it
|
||||
sym_ForEach([](Symbol &sym) {
|
||||
if (!sym.isBuiltin && sym.type == SYM_EQUS) {
|
||||
if (!hasDefines) {
|
||||
fputs("\tDefinitions:\n", stderr);
|
||||
hasDefines = true;
|
||||
}
|
||||
fprintf(stderr, "\t - def %s equs \"%s\"\n", sym.name.c_str(), sym.getEqus()->c_str());
|
||||
}
|
||||
});
|
||||
// -s/--state
|
||||
if (!localOptions.stateFileSpecs.empty()) {
|
||||
fputs("\tOutput state files:\n", stderr);
|
||||
static char const *featureNames[NB_STATE_FEATURES] = {
|
||||
"equ",
|
||||
"var",
|
||||
"equs",
|
||||
"char",
|
||||
"macro",
|
||||
};
|
||||
for (auto const &[name, features] : localOptions.stateFileSpecs) {
|
||||
fprintf(stderr, "\t - %s: ", name == "-" ? "<stdout>" : name.c_str());
|
||||
for (size_t i = 0; i < features.size(); ++i) {
|
||||
if (i > 0) {
|
||||
fputs(", ", stderr);
|
||||
}
|
||||
fputs(featureNames[features[i]], stderr);
|
||||
}
|
||||
putc('\n', stderr);
|
||||
}
|
||||
}
|
||||
// asmfile
|
||||
if (localOptions.inputFileName) {
|
||||
fprintf(
|
||||
stderr,
|
||||
"\tInput asm file: %s\n",
|
||||
*localOptions.inputFileName == "-" ? "<stdin>" : localOptions.inputFileName->c_str()
|
||||
);
|
||||
}
|
||||
// -o/--output
|
||||
if (options.objectFileName) {
|
||||
fprintf(stderr, "\tOutput object file: %s\n", options.objectFileName->c_str());
|
||||
}
|
||||
fstk_VerboseOutputConfig();
|
||||
if (localOptions.dependFileName) {
|
||||
fprintf(stderr, "\tOutput dependency file: %s\n", localOptions.dependFileName->c_str());
|
||||
// -MT or -MQ
|
||||
if (options.targetFileName) {
|
||||
fprintf(stderr, "\tTarget file(s): %s\n", options.targetFileName->c_str());
|
||||
}
|
||||
// -MG or -MC
|
||||
switch (options.missingIncludeState) {
|
||||
case INC_ERROR:
|
||||
fputs("\tExit with an error on a missing dependency\n", stderr);
|
||||
break;
|
||||
case GEN_EXIT:
|
||||
fputs("\tExit normally on a missing dependency\n", stderr);
|
||||
break;
|
||||
case GEN_CONTINUE:
|
||||
fputs("\tContinue processing after a missing dependency\n", stderr);
|
||||
break;
|
||||
}
|
||||
// -MP
|
||||
if (options.generatePhonyDeps) {
|
||||
fputs("\tGenerate phony dependencies\n", stderr);
|
||||
}
|
||||
}
|
||||
fputs("Ready.\n", stderr);
|
||||
|
||||
style_Reset(stderr);
|
||||
}
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
// Support SOURCE_DATE_EPOCH for reproducible builds
|
||||
// https://reproducible-builds.org/docs/source-date-epoch/
|
||||
@@ -311,239 +513,54 @@ int main(int argc, char *argv[]) {
|
||||
options.maxErrors = 100; // LCOV_EXCL_LINE
|
||||
}
|
||||
|
||||
// Parse CLI options
|
||||
for (int ch; (ch = musl_getopt_long_only(argc, argv, optstring, longopts, nullptr)) != -1;) {
|
||||
switch (ch) {
|
||||
case 'B':
|
||||
if (!trace_ParseTraceDepth(musl_optarg)) {
|
||||
fatal("Invalid argument for option '-B'");
|
||||
}
|
||||
break;
|
||||
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, fatal);
|
||||
|
||||
case 'b':
|
||||
if (strlen(musl_optarg) == 2) {
|
||||
opt_B(musl_optarg);
|
||||
} else {
|
||||
fatal("Must specify exactly 2 characters for option '-b'");
|
||||
}
|
||||
break;
|
||||
|
||||
case 'D': {
|
||||
char *equals = strchr(musl_optarg, '=');
|
||||
if (equals) {
|
||||
*equals = '\0';
|
||||
sym_AddString(musl_optarg, std::make_shared<std::string>(equals + 1));
|
||||
} else {
|
||||
sym_AddString(musl_optarg, std::make_shared<std::string>("1"));
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 'E':
|
||||
options.exportAll = true;
|
||||
break;
|
||||
|
||||
case 'g':
|
||||
if (strlen(musl_optarg) == 4) {
|
||||
opt_G(musl_optarg);
|
||||
} else {
|
||||
fatal("Must specify exactly 4 characters for option '-g'");
|
||||
}
|
||||
break;
|
||||
|
||||
// LCOV_EXCL_START
|
||||
case 'h':
|
||||
usage.printAndExit(0);
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
case 'I':
|
||||
fstk_AddIncludePath(musl_optarg);
|
||||
break;
|
||||
|
||||
case 'M':
|
||||
if (dependFileName) {
|
||||
warnx(
|
||||
"Overriding dependency file \"%s\"",
|
||||
strcmp(dependFileName, "-") ? dependFileName : "<stdout>"
|
||||
);
|
||||
}
|
||||
dependFileName = musl_optarg;
|
||||
break;
|
||||
|
||||
case 'o':
|
||||
if (!options.objectFileName.empty()) {
|
||||
warnx("Overriding output file \"%s\"", options.objectFileName.c_str());
|
||||
}
|
||||
options.objectFileName = musl_optarg;
|
||||
break;
|
||||
|
||||
case 'P':
|
||||
fstk_AddPreIncludeFile(musl_optarg);
|
||||
break;
|
||||
|
||||
case 'p':
|
||||
if (std::optional<uint64_t> padByte = parseWholeNumber(musl_optarg); !padByte) {
|
||||
fatal("Invalid argument for option '-p'");
|
||||
} else if (*padByte > 0xFF) {
|
||||
fatal("Argument for option '-p' must be between 0 and 0xFF");
|
||||
} else {
|
||||
opt_P(*padByte);
|
||||
}
|
||||
break;
|
||||
|
||||
case 'Q': {
|
||||
char const *precisionArg = musl_optarg;
|
||||
if (precisionArg[0] == '.') {
|
||||
++precisionArg;
|
||||
}
|
||||
|
||||
if (std::optional<uint64_t> precision = parseWholeNumber(precisionArg); !precision) {
|
||||
fatal("Invalid argument for option '-Q'");
|
||||
} else if (*precision < 1 || *precision > 31) {
|
||||
fatal("Argument for option '-Q' must be between 1 and 31");
|
||||
} else {
|
||||
opt_Q(*precision);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case 'r':
|
||||
if (std::optional<uint64_t> maxDepth = parseWholeNumber(musl_optarg); !maxDepth) {
|
||||
fatal("Invalid argument for option '-r'");
|
||||
} else if (errno == ERANGE) {
|
||||
fatal("Argument for option '-r' is out of range");
|
||||
} else {
|
||||
options.maxRecursionDepth = *maxDepth;
|
||||
}
|
||||
break;
|
||||
|
||||
case 's': {
|
||||
// Split "<features>:<name>" so `musl_optarg` is "<features>" and `name` is "<name>"
|
||||
char *name = strchr(musl_optarg, ':');
|
||||
if (!name) {
|
||||
fatal("Invalid argument for option '-s'");
|
||||
}
|
||||
*name++ = '\0';
|
||||
|
||||
std::vector<StateFeature> features = parseStateFeatures(musl_optarg);
|
||||
|
||||
if (stateFileSpecs.find(name) != stateFileSpecs.end()) {
|
||||
warnx("Overriding state file \"%s\"", name);
|
||||
}
|
||||
stateFileSpecs.emplace(name, std::move(features));
|
||||
break;
|
||||
}
|
||||
|
||||
// LCOV_EXCL_START
|
||||
case 'V':
|
||||
printf("rgbasm %s\n", get_package_version_string());
|
||||
exit(0);
|
||||
|
||||
case 'v':
|
||||
incrementVerbosity();
|
||||
break;
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
case 'W':
|
||||
opt_W(musl_optarg);
|
||||
break;
|
||||
|
||||
case 'w':
|
||||
warnings.state.warningsEnabled = false;
|
||||
break;
|
||||
|
||||
case 'X':
|
||||
if (std::optional<uint64_t> maxErrors = parseWholeNumber(musl_optarg); !maxErrors) {
|
||||
fatal("Invalid argument for option '-X'");
|
||||
} else if (*maxErrors > UINT64_MAX) {
|
||||
fatal("Argument for option '-X' must be between 0 and %" PRIu64, UINT64_MAX);
|
||||
} else {
|
||||
options.maxErrors = *maxErrors;
|
||||
}
|
||||
break;
|
||||
|
||||
case 0: // Long-only options
|
||||
switch (longOpt) {
|
||||
case 'c':
|
||||
if (!style_Parse(musl_optarg)) {
|
||||
fatal("Invalid argument for option '--color'");
|
||||
}
|
||||
break;
|
||||
|
||||
case 'C':
|
||||
options.missingIncludeState = GEN_CONTINUE;
|
||||
break;
|
||||
|
||||
case 'G':
|
||||
options.missingIncludeState = GEN_EXIT;
|
||||
break;
|
||||
|
||||
case 'P':
|
||||
options.generatePhonyDeps = true;
|
||||
break;
|
||||
|
||||
case 'Q':
|
||||
case 'T': {
|
||||
std::string newTarget = musl_optarg;
|
||||
if (longOpt == 'Q') {
|
||||
newTarget = escapeMakeChars(newTarget);
|
||||
}
|
||||
if (!options.targetFileName.empty()) {
|
||||
options.targetFileName += ' ';
|
||||
}
|
||||
options.targetFileName += newTarget;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
// LCOV_EXCL_START
|
||||
default:
|
||||
usage.printAndExit(1);
|
||||
// LCOV_EXCL_STOP
|
||||
}
|
||||
}
|
||||
|
||||
if (options.targetFileName.empty() && !options.objectFileName.empty()) {
|
||||
if (!options.targetFileName && options.objectFileName) {
|
||||
options.targetFileName = options.objectFileName;
|
||||
}
|
||||
|
||||
verboseOutputConfig(argc, argv);
|
||||
verboseOutputConfig();
|
||||
|
||||
if (argc == musl_optind) {
|
||||
if (!localOptions.inputFileName) {
|
||||
usage.printAndExit("No input file specified (pass \"-\" to read from standard input)");
|
||||
} else if (argc != musl_optind + 1) {
|
||||
usage.printAndExit("More than one input file specified");
|
||||
}
|
||||
|
||||
std::string mainFileName = argv[musl_optind];
|
||||
// LCOV_EXCL_START
|
||||
verbosePrint(
|
||||
VERB_NOTICE,
|
||||
"Assembling \"%s\"\n",
|
||||
*localOptions.inputFileName == "-" ? "<stdin>" : localOptions.inputFileName->c_str()
|
||||
);
|
||||
// LCOV_EXCL_STOP
|
||||
|
||||
verbosePrint(VERB_NOTICE, "Assembling \"%s\"\n", mainFileName.c_str()); // LCOV_EXCL_LINE
|
||||
|
||||
if (dependFileName) {
|
||||
if (options.targetFileName.empty()) {
|
||||
if (localOptions.dependFileName) {
|
||||
if (!options.targetFileName) {
|
||||
fatal("Dependency files can only be created if a target file is specified with either "
|
||||
"'-o', '-MQ' or '-MT'");
|
||||
}
|
||||
|
||||
if (strcmp("-", dependFileName)) {
|
||||
options.dependFile = fopen(dependFileName, "w");
|
||||
if (*localOptions.dependFileName == "-") {
|
||||
options.dependFile = stdout;
|
||||
} else {
|
||||
options.dependFile = fopen(localOptions.dependFileName->c_str(), "w");
|
||||
if (options.dependFile == nullptr) {
|
||||
// LCOV_EXCL_START
|
||||
fatal("Failed to open dependency file \"%s\": %s", dependFileName, strerror(errno));
|
||||
fatal(
|
||||
"Failed to open dependency file \"%s\": %s",
|
||||
localOptions.dependFileName->c_str(),
|
||||
strerror(errno)
|
||||
);
|
||||
// LCOV_EXCL_STOP
|
||||
}
|
||||
} else {
|
||||
options.dependFile = stdout;
|
||||
}
|
||||
}
|
||||
|
||||
options.printDep(mainFileName);
|
||||
options.printDep(*localOptions.inputFileName);
|
||||
|
||||
charmap_New(DEFAULT_CHARMAP_NAME, nullptr);
|
||||
|
||||
// Init lexer and file stack, providing file info
|
||||
fstk_Init(mainFileName);
|
||||
fstk_Init(*localOptions.inputFileName);
|
||||
|
||||
// Perform parse (`yy::parser` is auto-generated from `parser.y`)
|
||||
if (yy::parser parser; parser.parse() != 0) {
|
||||
@@ -569,7 +586,7 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
out_WriteObject();
|
||||
|
||||
for (auto const &[name, features] : stateFileSpecs) {
|
||||
for (auto const &[name, features] : localOptions.stateFileSpecs) {
|
||||
out_WriteState(name, features);
|
||||
}
|
||||
|
||||
|
||||
@@ -191,23 +191,22 @@ static void writeFileStackNode(FileStackNode const &node, FILE *file) {
|
||||
}
|
||||
|
||||
void out_WriteObject() {
|
||||
if (options.objectFileName.empty()) {
|
||||
if (!options.objectFileName) {
|
||||
return;
|
||||
}
|
||||
|
||||
static FILE *file; // `static` so `sect_ForEach` callback can see it
|
||||
if (options.objectFileName != "-") {
|
||||
file = fopen(options.objectFileName.c_str(), "wb");
|
||||
char const *objectFileName = options.objectFileName->c_str();
|
||||
if (*options.objectFileName != "-") {
|
||||
file = fopen(objectFileName, "wb");
|
||||
} else {
|
||||
options.objectFileName = "<stdout>";
|
||||
objectFileName = "<stdout>";
|
||||
(void)setmode(STDOUT_FILENO, O_BINARY);
|
||||
file = stdout;
|
||||
}
|
||||
if (!file) {
|
||||
// LCOV_EXCL_START
|
||||
fatal(
|
||||
"Failed to open object file \"%s\": %s", options.objectFileName.c_str(), strerror(errno)
|
||||
);
|
||||
fatal("Failed to open object file \"%s\": %s", objectFileName, strerror(errno));
|
||||
// LCOV_EXCL_STOP
|
||||
}
|
||||
Defer closeFile{[&] { fclose(file); }};
|
||||
|
||||
Reference in New Issue
Block a user