MCPcopy Create free account
hub / github.com/chipsalliance/Surelog / getCheckerDir

Method getCheckerDir

src/Common/PlatformFileSystem.cpp:672–682  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

670}
671
672PathId PlatformFileSystem::getCheckerDir(bool isUnitCompilation,
673 SymbolTable *symbolTable) {
674 std::filesystem::path checkerDir = m_outputDir;
675 checkerDir /= isUnitCompilation ? kUnitCompileDirName : kAllCompileDirName;
676 checkerDir /= kCheckerDirName;
677 PathId checkerDirId = toPathId(checkerDir.string(), symbolTable);
678 if (kEnableLogs) {
679 std::cerr << "getCheckerDir: " << PathIdPP(checkerDirId) << std::endl;
680 }
681 return checkerDirId;
682}
683
684PathId PlatformFileSystem::getCheckerFile(PathId uhdmFileId,
685 SymbolTable *symbolTable) {

Callers 1

checkMethod · 0.80

Calls 1

PathIdPPClass · 0.85

Tested by

no test coverage detected