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

Unified Diff: src/IceConverter.h

Issue 350933002: Refactor llvm2ice so that Ice can be built while reading bitcode. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits in patch set 2. Created 6 years, 6 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
new file mode 100644
index 0000000000000000000000000000000000000000..71fc8aa0c5f4dadc13af0867f5da349ccf5b79aa
--- /dev/null
+++ b/src/IceConverter.h
@@ -0,0 +1,48 @@
+//===- subzero/src/IceConverter.h - Converts LLVM to ICE --------*- C++ -*-===//
+//
+// The Subzero Code Generator
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file declares the LLVM to ICE converter.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef SUBZERO_SRC_ICECONVERTER_H
+#define SUBZERO_SRC_ICECONVERTER_H
+
+#include "IceGlobalContext.h"
+
+namespace llvm {
+class Module;
+}
+
+namespace Ice {
+
+class Converter {
+public:
+ Converter(Ice::GlobalContext *Ctx,
+ bool DisableInternal,
+ bool SubzeroTimingEnabled,
+ bool DisableTranslation)
+ : Ctx(Ctx),
+ DisableInternal(DisableInternal),
+ SubzeroTimingEnabled(SubzeroTimingEnabled),
+ DisableTranslation(DisableTranslation)
+ {}
+ /// Converts the LLVM Module to ICE. Returns exit status 0 if successful,
+ /// Nonzero otherwise.
+ int convertToIce(llvm::Module *Mod);
+private:
+ Ice::GlobalContext *Ctx;
+ bool DisableInternal;
+ bool SubzeroTimingEnabled;
+ bool DisableTranslation;
+};
+
+}
+
+#endif // SUBZERO_SRC_ICECONVERTER_H
« 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