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

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 10. Created 6 years, 5 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') | src/IceInst.cpp » ('J')
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 30d3b6041c4d8e859d6fa2e0351b4c5b135273d1..7b0d6e793b8081168b076a185acc4b3989a2cee8 100644
--- a/src/IceConverter.h
+++ b/src/IceConverter.h
@@ -24,16 +24,18 @@ namespace Ice {
class Converter : public Translator {
public:
- Converter(GlobalContext *Ctx, Ice::ClFlags &Flags) : Translator(Ctx, Flags) {}
+ Converter(llvm::Module *Mod, GlobalContext *Ctx, 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') | src/IceInst.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698