Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: src/IceConverter.h

Issue 395193005: Start processing function blocks in Subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in patch set 13. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.standalone ('k') | src/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConverter.h
diff --git a/src/IceConverter.h b/src/IceConverter.h
index bf8122895142bf1579c311c9cf20526b5bb8bb7e..b187357f7c093551f7acda6884d93f21d2fb5054 100644
--- a/src/IceConverter.h
+++ b/src/IceConverter.h
@@ -24,16 +24,18 @@ namespace Ice {
class Converter : public Translator {
public:
- Converter(GlobalContext *Ctx) : Translator(Ctx) {}
+ Converter(llvm::Module *Mod, GlobalContext *Ctx, const Ice::ClFlags &Flags)
+ : Translator(Ctx, Flags), Mod(Mod) {}
/// Converts the LLVM Module to ICE. Sets exit status to false if successful,
/// true otherwise.
- void convertToIce(llvm::Module *Mod);
+ void convertToIce();
private:
+ llvm::Module *Mod;
// Converts globals to ICE, and then machine code.
- void convertGlobals(llvm::Module *Mod);
+ void convertGlobals();
// Converts functions to ICE, and then machine code.
- void convertFunctions(llvm::Module *Mod);
+ void convertFunctions();
Converter(const Converter &) LLVM_DELETED_FUNCTION;
Converter &operator=(const Converter &) LLVM_DELETED_FUNCTION;
};
« no previous file with comments | « Makefile.standalone ('k') | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698