mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-13 01:15:32 +00:00
To be consistent with the rest of LLVM codebase (and the rest of this file):
* Changed tabs to spaces * Removed a space between a function call and its arguments (...) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8712 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aadb55fded
commit
3d8a54d00c
@ -27,7 +27,7 @@ namespace {
|
||||
InputArgv(cl::ConsumeAfter, cl::desc("<program arguments>..."));
|
||||
|
||||
cl::opt<std::string>
|
||||
MainFunction ("f", cl::desc("Function to execute"), cl::init("main"),
|
||||
MainFunction("f", cl::desc("Function to execute"), cl::init("main"),
|
||||
cl::value_desc("function name"));
|
||||
|
||||
cl::opt<bool> TraceMode("trace", cl::desc("Enable Tracing"));
|
||||
@ -37,10 +37,10 @@ namespace {
|
||||
cl::init(false));
|
||||
}
|
||||
|
||||
static std::vector<std::string> makeStringVector (const char **envp) {
|
||||
static std::vector<std::string> makeStringVector(const char **envp) {
|
||||
std::vector<std::string> rv;
|
||||
for (unsigned i = 0; envp[i]; ++i)
|
||||
rv.push_back (envp[i]);
|
||||
rv.push_back(envp[i]);
|
||||
return rv;
|
||||
}
|
||||
|
||||
@ -92,21 +92,21 @@ static void *CreateArgv(ExecutionEngine *EE,
|
||||
/// from calling FnName, or -1 and prints an error msg. if the named
|
||||
/// function cannot be found.
|
||||
///
|
||||
int callAsMain (ExecutionEngine *EE, Module *M, const std::string &FnName,
|
||||
int callAsMain(ExecutionEngine *EE, Module *M, const std::string &FnName,
|
||||
const std::vector<std::string> &Args,
|
||||
const std::vector<std::string> &EnvVars) {
|
||||
Function *Fn = M->getNamedFunction (FnName);
|
||||
Function *Fn = M->getNamedFunction(FnName);
|
||||
if (!Fn) {
|
||||
std::cerr << "Function '" << FnName << "' not found in module.\n";
|
||||
return -1;
|
||||
}
|
||||
std::vector<GenericValue> GVArgs;
|
||||
GenericValue GVArgc;
|
||||
GVArgc.IntVal = Args.size ();
|
||||
GVArgs.push_back (GVArgc); // Arg #0 = argc.
|
||||
GVArgs.push_back (PTOGV (CreateArgv (EE, Args))); // Arg #1 = argv.
|
||||
GVArgs.push_back (PTOGV (CreateArgv (EE, EnvVars))); // Arg #2 = envp.
|
||||
return EE->run (Fn, GVArgs).IntVal;
|
||||
GVArgc.IntVal = Args.size();
|
||||
GVArgs.push_back(GVArgc); // Arg #0 = argc.
|
||||
GVArgs.push_back(PTOGV(CreateArgv(EE, Args))); // Arg #1 = argv.
|
||||
GVArgs.push_back(PTOGV(CreateArgv(EE, EnvVars))); // Arg #2 = envp.
|
||||
return EE->run(Fn, GVArgs).IntVal;
|
||||
}
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -126,22 +126,22 @@ int main(int argc, char **argv, const char **envp) {
|
||||
}
|
||||
|
||||
ExecutionEngine *EE =
|
||||
ExecutionEngine::create (M, ForceInterpreter, TraceMode);
|
||||
assert (EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
|
||||
ExecutionEngine::create(M, ForceInterpreter, TraceMode);
|
||||
assert(EE && "Couldn't create an ExecutionEngine, not even an interpreter?");
|
||||
|
||||
// Add the module's name to the start of the vector of arguments to main().
|
||||
// But delete .bc first, since programs (and users) might not expect to
|
||||
// see it.
|
||||
const std::string ByteCodeFileSuffix (".bc");
|
||||
if (InputFile.rfind (ByteCodeFileSuffix) ==
|
||||
InputFile.length () - ByteCodeFileSuffix.length ()) {
|
||||
InputFile.erase (InputFile.length () - ByteCodeFileSuffix.length ());
|
||||
const std::string ByteCodeFileSuffix(".bc");
|
||||
if (InputFile.rfind(ByteCodeFileSuffix) ==
|
||||
InputFile.length() - ByteCodeFileSuffix.length()) {
|
||||
InputFile.erase(InputFile.length() - ByteCodeFileSuffix.length());
|
||||
}
|
||||
InputArgv.insert(InputArgv.begin(), InputFile);
|
||||
|
||||
// Run the main function!
|
||||
int ExitCode = callAsMain (EE, M, MainFunction, InputArgv,
|
||||
makeStringVector (envp));
|
||||
int ExitCode = callAsMain(EE, M, MainFunction, InputArgv,
|
||||
makeStringVector(envp));
|
||||
|
||||
// Now that we are done executing the program, shut down the execution engine
|
||||
delete EE;
|
||||
|
Loading…
x
Reference in New Issue
Block a user