2010-11-23 19:19:34 +00:00
|
|
|
//===--- FileSystemStatCache.cpp - Caching for 'stat' calls ---------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the FileSystemStatCache interface.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/Basic/FileSystemStatCache.h"
|
|
|
|
#include "llvm/System/Path.h"
|
|
|
|
using namespace clang;
|
|
|
|
|
2010-11-23 20:07:39 +00:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#define S_ISDIR(s) (_S_IFDIR & s)
|
|
|
|
#endif
|
|
|
|
|
2010-11-23 19:19:34 +00:00
|
|
|
MemorizeStatCalls::LookupResult
|
|
|
|
MemorizeStatCalls::getStat(const char *Path, struct stat &StatBuf) {
|
|
|
|
LookupResult Result = statChained(Path, StatBuf);
|
|
|
|
|
|
|
|
// Do not cache failed stats, it is easy to construct common inconsistent
|
|
|
|
// situations if we do, and they are not important for PCH performance (which
|
|
|
|
// currently only needs the stats to construct the initial FileManager
|
|
|
|
// entries).
|
2010-11-23 20:05:15 +00:00
|
|
|
if (Result == CacheMissing)
|
2010-11-23 19:19:34 +00:00
|
|
|
return Result;
|
|
|
|
|
|
|
|
// Cache file 'stat' results and directories with absolutely paths.
|
|
|
|
if (!S_ISDIR(StatBuf.st_mode) || llvm::sys::Path(Path).isAbsolute())
|
2010-11-23 19:28:12 +00:00
|
|
|
StatCalls[Path] = StatBuf;
|
2010-11-23 19:19:34 +00:00
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|