Displaying 1 result from an estimated 1 matches for "isinmemory".
Did you mean:
  inmemory
  
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...ormattedStream.h"
+#include "llvm/Support/system_error.h"
 #include <string>
 #include <vector>
 
@@ -28,6 +30,111 @@
   class MemoryBuffer;
   class TargetMachine;
   class raw_ostream;
+
+  class IPOFile;
+  class IPOFileMgr;
+  class IPOPartition {
+  public:
+    bool isInMemory() const { return Mod != 0; }
+    bool SaveBitCode();
+    bool LoadBitCode();
+    const std::string &getIRFilePath() const;
+    const std::string &getObjFilePath() const;
+    Module *getModule() const { return Mod; }
+  
+    IPOFile &getIRFile() const;
+    IPOFile &getObjFile(...