std::string location(clang::SourceLocation const& l, clang::SourceManager const& sm) { if(l.isValid()) { if(l.isFileID()) { // if (sm.isLoadedFileID (sm.getFileID(l))) return "PRELOADED MODULE"; if(sm.isLoadedSourceLocation(l)) { return "PRELOADED MODULE"; } return l.printToString(sm); } if(l.isMacroID()) { // FIXME: what do we do here? somehow clang fails /* std::cout << "SLoc isMacroID\n"; auto sl = sm.getSpellingLoc(l); if (sm.isLoadedSourceLocation(sl) ) { return "PRELOADED MODULE"; } if(sl.isValid()) { return sl.printToString(sm); } PresumedLoc pl = sm.getPresumedLoc(l); if (pl.isValid()){ return string(pl.getFilename()); } */ } return string("UNKNOWN FILE"); } return string("INVALID LOC"); }
bool NamedDeclMatcher::shouldIgnore(clang::SourceLocation L) { if (!L.isValid()) { return true; } clang::SourceManager &SM = ci->getSourceManager(); clang::FullSourceLoc FSL(L, SM); const clang::FileEntry *FE = SM.getFileEntryForID(FSL.getFileID()); if (!FE) { // attempt to get the spelling location auto SL = SM.getSpellingLoc(L); if (!SL.isValid()) { return true; } clang::FullSourceLoc FSL2(SL, SM); FE = SM.getFileEntryForID(FSL2.getFileID()); if (!FE) { return true; } } auto FN = FE->getName(); for (auto I = ignoreList.begin(), E = ignoreList.end(); I != E; ++I) { if (I->FullMatch(FN)) { return true; } } return false; }
void NamedDeclMatcher::renameLocation(clang::SourceLocation L, std::string& N) { if (L.isValid()) { if (L.isMacroID()) { // TODO: emit error using diagnostics clang::SourceManager &SM = ci->getSourceManager(); if (SM.isMacroArgExpansion(L) || SM.isInSystemMacro(L)) { // see if it's the macro expansion we can handle // e.g. // #define call(x) x // call(y()); // if we want to rename y() L = SM.getSpellingLoc(L); // this falls through to the rename routine below } else { // if the spelling location is from an actual file that we can // touch, then do the replacement, but show a warning clang::SourceManager &SM = ci->getSourceManager(); auto SL = SM.getSpellingLoc(L); clang::FullSourceLoc FSL(SL, SM); const clang::FileEntry *FE = SM.getFileEntryForID(FSL.getFileID()); if (FE) { llvm::errs() << "Warning: Rename attempted as a result of macro " << "expansion may break things, at: " << loc(L) << "\n"; L = SL; // this falls through to the rename routine below } else { // cannot handle this case llvm::errs() << "Error: Token is resulted from macro expansion" " and is therefore not renamed, at: " << loc(L) << "\n"; return; } } } if (!canChangeLocation(L)) { return; } clang::Preprocessor &P = ci->getPreprocessor(); auto LE = P.getLocForEndOfToken(L); if (LE.isValid()) { // getLocWithOffset returns the location *past* the token, hence -1 auto E = LE.getLocWithOffset(-1); // TODO: Determine if it's a writable file // TODO: Determine if the location has already been touched or // needs skipping (such as in refactoring API user's code, then // the API headers need no changing since later the new API will be // in place) Replacer::instance().replace(clang::SourceRange(L, E), N, ci->getSourceManager()); } } }
bool HeaderTagger::isInterceptedLibHeader(const clang::SourceLocation& loc) const { if(!loc.isValid()) { return false; } auto fit = isInterceptedCache.find(sm.getFileID(loc)); if(fit != isInterceptedCache.end()) { return !fit->second.second; } std::string filename = sm.getPresumedLoc(loc).getFilename(); bool isIntercepted = isInterceptedLibHeader(filename); isInterceptedCache[sm.getFileID(loc)] = {filename, !isIntercepted}; return isIntercepted; }
void PreprocessorCallback::HandlePPCond(clang::SourceLocation Loc, clang::SourceLocation IfLoc) { if (!Loc.isValid() || !Loc.isFileID()) return; clang::SourceManager &SM = annotator.getSourceMgr(); clang::FileID FID = SM.getFileID(Loc); if (!annotator.shouldProcess(FID)) return; while(ElifMapping.count(IfLoc)) { IfLoc = Loc; } if (SM.getFileID(IfLoc) != FID) { return; } annotator.generator(FID).addTag("span", ("data-ppcond=\"" + clang::Twine(SM.getExpansionLineNumber(IfLoc)) + "\"").str(), SM.getFileOffset(Loc), clang::Lexer::MeasureTokenLength(Loc, SM, PP.getLangOpts())); }
void PreprocessorCallback::InclusionDirective(clang::SourceLocation HashLoc, const clang::Token& IncludeTok, llvm::StringRef FileName, bool IsAngled, clang::CharSourceRange FilenameRange, const clang::FileEntry* File, llvm::StringRef SearchPath, llvm::StringRef RelativePath, const clang::Module* Imported) { if (!HashLoc.isValid() || !HashLoc.isFileID() || !File) return; clang::SourceManager &sm = annotator.getSourceMgr(); clang::FileID FID = sm.getFileID(HashLoc); if (!annotator.shouldProcess(FID)) return; std::string link = annotator.pathTo(FID, File); if (link.empty()) return; auto B = sm.getFileOffset(FilenameRange.getBegin()); auto E = sm.getFileOffset(FilenameRange.getEnd()); annotator.generator(FID).addTag("a", "href=\"" % link % "\"", B, E-B); }
string HeaderTagger::getTopLevelInclude(const clang::SourceLocation& includeLocation) const{ // if it is a dead end if (!includeLocation.isValid()) { return ""; } auto toFilename = [&] (const clang::SourceLocation& loc) { return sm.getPresumedLoc(loc).getFilename(); }; // get the presumed location (whatever this is, ask clang) ... // ~ ploc represents the file were includeLocation is located clang::PresumedLoc ploc = sm.getPresumedLoc(includeLocation); // .. and retrieve the associated include // ~ from where the file ploc represents was included clang::SourceLocation includingLocation = ploc.getIncludeLoc(); // check whether the stack can be continued if (!includingLocation.isValid()) { return ""; // this happens when element is declared in c / cpp file => no header } // ~ pIncludeLoc represents the file were includLoc is located clang::PresumedLoc pIncludeLoc = sm.getPresumedLoc(includingLocation); if( isInjectedHeader(pIncludeLoc) ){ //the header was injected -- has no valid filename ("<command line">) return ""; } //******************* // // travel down until we are at the sourcefile then work up again // if userProvided header, we need to go further // if userSearchPath/systemSearch path we need to include de header // //******************* // descent further as long as we have a header file as presumed include includeLocation if ( isHeaderFile(toFilename(includingLocation) )) { // check if last include was in the search path and next is not, // this case is a system header included inside of a programmer include chain // BUT if both are still in the search path, continue cleaning the include if (isStdLibHeader(includeLocation) && !isStdLibHeader(includingLocation)){ if(!isIntrinsicHeader(toFilename(includingLocation))) { return ploc.getFilename(); } } if (isInterceptedLibHeader(includeLocation) && !isInterceptedLibHeader(includingLocation)){ if(!isIntrinsicHeader(toFilename(includingLocation))) { return ploc.getFilename(); } } if (isUserLibHeader(includeLocation) && !isUserLibHeader(includingLocation)){ if(!isIntrinsicHeader(toFilename(includingLocation))) { return ploc.getFilename(); } } return getTopLevelInclude(includingLocation); } // we already visited all the headers and we are in the .c/.cpp file if (isHeaderFile(ploc.getFilename())) { if(isIntrinsicHeader(ploc.getFilename())) { return ploc.getFilename(); } if (isStdLibHeader(ploc.getFilename()) ) { return ploc.getFilename(); // this happens when header file is included straight in the code } if (isInterceptedLibHeader(ploc.getFilename())) { return ploc.getFilename(); // this happens when header file is included straight in the code } if (isUserLibHeader(ploc.getFilename())) { return ploc.getFilename(); } return ""; // this happens when is declared in a header which is not system header } /* // we already visited all the headers and we are in the .c/.cpp file if (!isHeaderFile(sm.getPresumedLoc(includeLoc).getFilename())) { return ploc.getFilename(); } */ return ""; }
bool WebCLReporter::isFromMainFile(clang::SourceLocation location) const { return location.isValid() && instance_.getSourceManager().isFromMainFile(location); }