Add ability to test parsing of bitcode records in Subzero.
Extends the NaCl bitcode munger so that the PNaClTranslator parser
can be applied to the defined sequence of record values.
BUG=None
R=jvoung@chromium.org, stichnot@chromium.org
Review URL: https://codereview.chromium.org/800883006
diff --git a/src/PNaClTranslator.h b/src/PNaClTranslator.h
index dea7d43..5738f11 100644
--- a/src/PNaClTranslator.h
+++ b/src/PNaClTranslator.h
@@ -19,6 +19,10 @@
#include "IceTranslator.h"
+namespace llvm {
+class MemoryBuffer;
+} // end of namespace llvm
+
namespace Ice {
class PNaClTranslator : public Translator {
@@ -28,10 +32,15 @@
public:
PNaClTranslator(GlobalContext *Ctx, const ClFlags &Flags)
: Translator(Ctx, Flags) {}
+
// Reads the PNaCl bitcode file and translates to ICE, which is then
// converted to machine code. Sets ErrorStatus to true if any
// errors occurred.
void translate(const std::string &IRFilename);
+
+ // Reads MemBuf, assuming it is the PNaCl bitcode contents of IRFilename.
+ void translateBuffer(const std::string &IRFilename,
+ llvm::MemoryBuffer *MemBuf);
};
} // end of namespace Ice