mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-27 17:31:33 +00:00
callExternalMethod now returns the return value of the function
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4721f1304f
commit
5deea3c5c5
@ -75,7 +75,6 @@ public:
|
|||||||
void enableProfiling() { Profile = true; }
|
void enableProfiling() { Profile = true; }
|
||||||
void enableTracing() { Trace = true; }
|
void enableTracing() { Trace = true; }
|
||||||
|
|
||||||
void initializeExecutionEngine();
|
|
||||||
void handleUserInput();
|
void handleUserInput();
|
||||||
|
|
||||||
// User Interation Methods...
|
// User Interation Methods...
|
||||||
@ -97,7 +96,6 @@ public:
|
|||||||
|
|
||||||
// Code execution methods...
|
// Code execution methods...
|
||||||
void callMethod (Method *Meth, const vector<GenericValue> &ArgVals);
|
void callMethod (Method *Meth, const vector<GenericValue> &ArgVals);
|
||||||
void callExternalMethod(Method *Meth, const vector<GenericValue> &ArgVals);
|
|
||||||
bool executeInstruction(); // Execute one instruction...
|
bool executeInstruction(); // Execute one instruction...
|
||||||
|
|
||||||
void stepInstruction(); // Do the 'step' command
|
void stepInstruction(); // Do the 'step' command
|
||||||
@ -110,6 +108,8 @@ public:
|
|||||||
void executeRetInst(ReturnInst *I, ExecutionContext &SF);
|
void executeRetInst(ReturnInst *I, ExecutionContext &SF);
|
||||||
void executeBrInst(BranchInst *I, ExecutionContext &SF);
|
void executeBrInst(BranchInst *I, ExecutionContext &SF);
|
||||||
void executeAllocInst(AllocationInst *I, ExecutionContext &SF);
|
void executeAllocInst(AllocationInst *I, ExecutionContext &SF);
|
||||||
|
GenericValue callExternalMethod(Method *Meth,
|
||||||
|
const vector<GenericValue> &ArgVals);
|
||||||
void exitCalled(GenericValue GV);
|
void exitCalled(GenericValue GV);
|
||||||
|
|
||||||
// getCurrentMethod - Return the currently executing method
|
// getCurrentMethod - Return the currently executing method
|
||||||
@ -145,6 +145,10 @@ private: // Helper functions
|
|||||||
// option is provided, just return that option.
|
// option is provided, just return that option.
|
||||||
//
|
//
|
||||||
Value *ChooseOneOption(const string &Name, const vector<Value*> &Opts);
|
Value *ChooseOneOption(const string &Name, const vector<Value*> &Opts);
|
||||||
|
|
||||||
|
|
||||||
|
void initializeExecutionEngine();
|
||||||
|
void initializeExternalMethods();
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user