]> granicus.if.org Git - clang/commitdiff
Add -empty-input-only option, for timing.
authorDaniel Dunbar <daniel@zuster.org>
Mon, 27 Apr 2009 21:19:07 +0000 (21:19 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Mon, 27 Apr 2009 21:19:07 +0000 (21:19 +0000)
 - Forces input file to be empty to time startup/shutdown costs.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70249 91177308-0d34-0410-b5e6-96231b3b80d8

tools/clang-cc/clang-cc.cpp

index bba5723724aad5617dc805a471ee9fc9ee6f1150..6f159e061535a65a9fe0466b085259429f000a4b 100644 (file)
@@ -168,6 +168,9 @@ static llvm::cl::opt<bool>
 DisableFree("disable-free",
            llvm::cl::desc("Disable freeing of memory on exit"),
            llvm::cl::init(false));
+static llvm::cl::opt<bool>
+EmptyInputOnly("empty-input-only", 
+      llvm::cl::desc("Force running on an empty input file"));
 
 enum ProgActions {
   RewriteObjC,                  // ObjC->C Rewriter.
@@ -1037,8 +1040,13 @@ static bool InitializeSourceManager(Preprocessor &PP,
   // Figure out where to get and map in the main file.
   SourceManager &SourceMgr = PP.getSourceManager();
   FileManager &FileMgr = PP.getFileManager();
-  
-  if (InFile != "-") {
+
+  if (EmptyInputOnly) {
+    const char *EmptyStr = "";
+    llvm::MemoryBuffer *SB = 
+      llvm::MemoryBuffer::getMemBuffer(EmptyStr, EmptyStr, "<empty input>");
+    SourceMgr.createMainFileIDForMemBuffer(SB);
+  } else if (InFile != "-") {
     const FileEntry *File = FileMgr.getFile(InFile);
     if (File) SourceMgr.createMainFileID(File, SourceLocation());
     if (SourceMgr.getMainFileID().isInvalid()) {