diff options
author | bloodstalker <thabogre@gmail.com> | 2016-12-24 14:00:41 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2016-12-24 14:00:41 +0000 |
commit | 8d6b1d63ffd719e9efc79a115c8f54bb1db4db66 (patch) | |
tree | 55a76e5dd86e6e2966e61a9912d0ac1a2a4d9f53 /mutator-lvl0.cpp | |
parent | changed the default build mode to c++1z (diff) | |
download | mutator-8d6b1d63ffd719e9efc79a115c8f54bb1db4db66.tar.gz mutator-8d6b1d63ffd719e9efc79a115c8f54bb1db4db66.zip |
some comments
Diffstat (limited to '')
-rw-r--r-- | mutator-lvl0.cpp | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/mutator-lvl0.cpp b/mutator-lvl0.cpp index 28d1692..ae71574 100644 --- a/mutator-lvl0.cpp +++ b/mutator-lvl0.cpp @@ -651,6 +651,7 @@ class MCSU184 : public MatchFinder::MatchCallback public: MCSU184 (Rewriter &Rewrite) : Rewrite(Rewrite) { + /*@DEVI-these push-backs generate garbage entries*/ UnionInfoProto.push_back(UnionInfo()); StructInfoProto.push_back(StructInfo()); @@ -865,6 +866,7 @@ class MCDCDF81 : public MatchFinder::MatchCallback public: MCDCDF81 (Rewriter &Rewrite) : Rewrite(Rewrite) { + /*@DEVI-the pushback generates garbage entries.*/ FuncInfoProto.push_back(FuncInfo()); VecC = 0U; @@ -2208,6 +2210,7 @@ class MCDCDF810 : public MatchFinder::MatchCallback public: MCDCDF810 (Rewriter &Rewrite) : Rewrite(Rewrite) { + /*@DEVI-the pushback here generates garbage entries.*/ FuncScopeProto.push_back(FuncScope()); VecC = 0U; @@ -2314,7 +2317,7 @@ private: Rewriter &Rewrite; }; /**********************************************************************************************************************/ -/*also flags the main.*/ +/*@DEVI-also flags the main.*/ class MCFunction165 : public MatchFinder::MatchCallback { public: @@ -2384,7 +2387,7 @@ private: Rewriter &Rewrite; }; /**********************************************************************************************************************/ -/*has false-positives*/ +/*@DEVI-has false-positives*/ class MCPointer171 : public MatchFinder::MatchCallback { public: @@ -2417,7 +2420,7 @@ private: Rewriter &Rewrite; }; /**********************************************************************************************************************/ -/*has a lot of false positives. now works based on array types not the array itself.*/ +/*@DEVI-has a lot of false positives. now works based on array types not the array itself.*/ class MCPointer1723 : public MatchFinder::MatchCallback { public: @@ -2492,8 +2495,8 @@ private: Rewriter &Rewrite; }; /**********************************************************************************************************************/ -/*in case of function pointers, where an argument has more than two levels of indirection, -the argument and the function pointer both get tagged. technically, it is a defendable.*/ +/*@DEVI-in case of function pointers, where an argument has more than two levels of indirection, +the argument and the function pointer both get tagged. technically, it is a defendable interpretation of the rule.*/ class MCPointer175 : public MatchFinder::MatchCallback { public: @@ -3022,10 +3025,10 @@ public: { if (!iter.HasMoreThanOneDaddy) { - std::cout << "8.7 : " << "Object " + iter.ObjNameStr + " is only being used in one block (" + iter.FirstDaddyName + ") but is not defined inside that block: " << std::endl; + std::cout << "8.7 : " << "Object (" + iter.ObjNameStr + ") is only being used in one block (" + iter.FirstDaddyName + ") but is not defined inside that block: " << std::endl; std::cout << iter.ObjSLStr << "\n" << std::endl; - XMLDocOut.XMLAddNode(iter.ObjFSL, iter.ObjSL, "8.7", "Object " + iter.ObjNameStr + " is only being used in one block (" + iter.FirstDaddyName + ") but is not defined inside that block: "); + XMLDocOut.XMLAddNode(iter.ObjFSL, iter.ObjSL, "8.7", "Object (" + iter.ObjNameStr + ") is only being used in one block (" + iter.FirstDaddyName + ") but is not defined inside that block: "); } } } |