search for: ipoparts

Displaying 1 result from an estimated 1 matches for "ipoparts".

2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...n false; + } + + return true; +} + +IPOPartition *IPOPartMgr::CreateIPOPart(Module *M) { + std::string PartName; + raw_string_ostream OS(PartName); + OS << "part" << NextPartId++; + + IPOPartition *P = new IPOPartition(M, OS.str().c_str(), FileMgr); + P->Mod = M; + IPOParts.push_back(P); + return P; +} + +// ///////////////////////////////////////////////////////////////////////////// +// +// Implementation of IPOFile and IPOFileMgr +// +// ///////////////////////////////////////////////////////////////////////////// +IPOFile::IPOFile(const char *DirName, con...