aboutsummaryrefslogtreecommitdiffstats
path: root/cgrep.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2018-11-12 13:27:34 +0000
committerbloodstalker <thabogre@gmail.com>2018-11-12 13:27:34 +0000
commit9d57b17e209983252f0ebda98087316577f04e6e (patch)
treea4cc546cfac7bfaab4dff9376a549ea5daec57f4 /cgrep.cpp
parentupdate (diff)
downloadcgrep-9d57b17e209983252f0ebda98087316577f04e6e.tar.gz
cgrep-9d57b17e209983252f0ebda98087316577f04e6e.zip
update
Diffstat (limited to 'cgrep.cpp')
-rw-r--r--cgrep.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/cgrep.cpp b/cgrep.cpp
index a4855be..87c60a1 100644
--- a/cgrep.cpp
+++ b/cgrep.cpp
@@ -51,7 +51,7 @@ cl::opt<bool> CO_CLASS("class", cl::desc("match class declrations only"), cl::in
cl::opt<bool> CO_STRUCT("struct", cl::desc("match structures only"), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done
cl::opt<bool> CO_UNION("union", cl::desc("match unions only"), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done
cl::opt<bool> CO_MACRO("macro", cl::desc("match macro definitions"), cl::init(false), cl::cat(CGrepCat), cl::Optional); //done
-cl::opt<bool> CO_HEADER("header", cl::desc("match headers in header inclusions"), cl::init(false), cl::cat(CGrepCat), cl::Optional);
+cl::opt<bool> CO_HEADER("header", cl::desc("match headers in header inclusions"), cl::init(false), cl::cat(CGrepCat), cl::Optional); //done
cl::opt<bool> CO_ALL("all", cl::desc("turns on all switches other than nameddecl"), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done
cl::opt<bool> CO_NAMEDDECL("nameddecl", cl::desc("matches all named declrations"), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done
cl::opt<bool> CO_AWK("awk", cl::desc("outputs location in a gawk freidnly format"), cl::init(false), cl::cat(CGrepCat), cl::Optional); // done
@@ -361,7 +361,17 @@ public:
const clang::Module *Imported,
SrcMgr::CharacteristicKind FileType) {
#endif
- if (CO_HEADER) {}
+ if (CO_HEADER) {
+ CheckSLValidity(HashLoc);
+ SourceLocation SL = Devi::SourceLocationHasMacro(HashLoc, Rewrite, "start");
+ if (Devi::IsTheMatchInSysHeader(CO_SYSHDR, SM, SL)) return void();
+ if (!Devi::IsTheMatchInMainFile(CO_MAINFILE, SM, SL)) return void();
+ std::string name = FileName.str();
+ if (regex_handler(REGEX_PP(CO_REGEX), name)) {
+ std::cout << name << "\t";
+ std::cout << SL.printToString(SM) << "\n";
+ }
+ }
}
private: