Lines Matching refs:ContentCache
38 ContentCache::~ContentCache() { in ~ContentCache()
45 unsigned ContentCache::getSizeBytesMapped() const { in getSizeBytesMapped()
51 llvm::MemoryBuffer::BufferKind ContentCache::getMemoryBufferKind() const { in getMemoryBufferKind()
66 unsigned ContentCache::getSize() const { in getSize()
71 void ContentCache::replaceBuffer(llvm::MemoryBuffer *B, bool DoNotFree) { in replaceBuffer()
84 llvm::MemoryBuffer *ContentCache::getBuffer(DiagnosticsEngine &Diag, in getBuffer()
379 MemBufferInfos[i]->~ContentCache(); in ~SourceManager()
383 for (llvm::DenseMap<const FileEntry*, SrcMgr::ContentCache*>::iterator in ~SourceManager()
386 I->second->~ContentCache(); in ~SourceManager()
414 const ContentCache *
420 ContentCache *&Entry = FileInfos[FileEnt]; in getOrCreateContentCache()
424 Entry = ContentCacheAlloc.Allocate<ContentCache>(); in getOrCreateContentCache()
432 new (Entry) ContentCache(FileEnt); in getOrCreateContentCache()
434 new (Entry) ContentCache(OverridenFilesKeepOriginalName ? FileEnt in getOrCreateContentCache()
438 new (Entry) ContentCache(FileEnt); in getOrCreateContentCache()
450 const ContentCache *SourceManager::createMemBufferContentCache( in createMemBufferContentCache()
453 ContentCache *Entry = ContentCacheAlloc.Allocate<ContentCache>(); in createMemBufferContentCache()
454 new (Entry) ContentCache(); in createMemBufferContentCache()
505 const SrcMgr::ContentCache *
508 FakeContentCacheForRecovery = llvm::make_unique<SrcMgr::ContentCache>(); in getFakeContentCacheForRecovery()
559 FileID SourceManager::createFileID(const ContentCache *File, in createFileID()
636 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File); in getMemoryBufferForFile()
644 const SrcMgr::ContentCache *IR = getOrCreateContentCache(SourceFile); in overrideFileContents()
647 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(Buffer, DoNotFree); in overrideFileContents()
648 const_cast<SrcMgr::ContentCache *>(IR)->BufferOverridden = true; in overrideFileContents()
668 const SrcMgr::ContentCache *IR = getOrCreateContentCache(File); in disableFileContentsOverride()
669 const_cast<SrcMgr::ContentCache *>(IR)->replaceBuffer(nullptr); in disableFileContentsOverride()
670 const_cast<SrcMgr::ContentCache *>(IR)->ContentsEntry = IR->OrigEntry; in disableFileContentsOverride()
678 const SrcMgr::ContentCache *CC = getOrCreateContentCache(File); in setFileIsTransient()
679 const_cast<SrcMgr::ContentCache *>(CC)->IsTransient = true; in setFileIsTransient()
1197 ComputeLineNumbers(DiagnosticsEngine &Diag, ContentCache *FI,
1200 static void ComputeLineNumbers(DiagnosticsEngine &Diag, ContentCache *FI, in ComputeLineNumbers()
1297 ContentCache *Content; in getLineNumber()
1309 Content = const_cast<ContentCache*>(Entry.getFile().getContentCache()); in getLineNumber()
1469 const SrcMgr::ContentCache *C = FI.getContentCache(); in getPresumedLoc()
1624 const ContentCache *MainContentCache in translateFile()
1697 const ContentCache *FileContentCache in translateFile()
1745 ContentCache *Content in translateLineCol()
1746 = const_cast<ContentCache *>(Entry.getFile().getContentCache()); in translateLineCol()