summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2015-06-07Collect all child nodes for each node.Andrei Karas2-0/+3
2015-06-07Dump nodes only if plugin invoked with dump command.Andrei Karas1-1/+15
2015-06-07Add support for plugin arguments.Andrei Karas2-0/+65
Add argument command.
2015-06-07Add some missing fields in parsed nodes.Andrei Karas8-6/+37
2015-06-07Add node type VAR_DECL.Andrei Karas6-1/+116
2015-06-07Add parsing node CLEANUP_POINT_EXPR.Andrei Karas6-1/+80
2015-06-07Add support for parsing CONVERT_EXPR node.Andrei Karas6-1/+80
2015-06-06Add parsing INIT_EXPR node type.Andrei Karas6-1/+83
2015-06-06Add parsing node type DECL_EXPR.Andrei Karas6-1/+82
2015-06-06Add parsing node type BIND_EXPR.Andrei Karas6-1/+84
2015-06-06Move files list from Makefile.am into separate file.Andrei Karas2-53/+54
2015-06-06Fix compilation warning.Andrei Karas1-0/+1
2015-06-06Move node handling function calls into separate file.Andrei Karas3-37/+24
2015-06-06Move node related includes from generic.cpp into separate include file.Andrei Karas3-15/+16
2015-06-06Move parserincludes.h into includes directory.Andrei Karas16-16/+15
2015-06-06Move all parser defines into separate file.Andrei Karas3-16/+15
2015-06-06Remove some useless includes.Andrei Karas4-9/+3
2015-06-06Move nodes and parsers to dirs based on types.Andrei Karas26-54/+58
2015-06-06Use same syntax in parseNodeType/createNodeType.Andrei Karas1-14/+14
2015-06-06Separate node file names with _.Andrei Karas26-41/+41
2015-06-06Remove word node from node file names.Andrei Karas35-66/+65
2015-06-06Impliment RETURN_EXPR parsing node. Also add base parsing for _EXPR nodes.Andrei Karas7-0/+201
2015-06-06Fix includes for building with gcc 4.9.Andrei Karas1-1/+2
2015-06-06Add parsing node type STATEMENT_LIST.Andrei Karas4-0/+94
2015-06-06Add some safe build flags for gcc plugins.Andrei Karas1-1/+1
2015-06-06In make file change compiler version to gcc-5/g++-5.Andrei Karas1-1/+2
2015-06-05Add support for PARM_DECL node.Andrei Karas4-0/+73
2015-06-05Add parsing node INTEGER_TYPE.Andrei Karas9-3/+152
Also fix negative numbers in INTEGER_CST node.
2015-06-05Add parsing node POINTER_TYPE.Andrei Karas4-2/+90
2015-06-04Add parsing INTEGER_CST node.Andrei Karas7-2/+180
Also add function for convertng int to string.
2015-06-04Add parsing nodes with typ IDENTIFIER_NODE.Andrei Karas4-0/+79
2015-06-04Add TREE_LIST node parsing.Andrei Karas7-3/+73
2015-06-04Use macroses in generic parser for smaller code.Andrei Karas1-30/+21
2015-06-04Simplify parsers. Remove header files for parsers.Andrei Karas12-185/+32
2015-06-04Fix parent for parmdeclnode.Andrei Karas1-4/+2
2015-06-04Add parsing TYPE_DECL node.Andrei Karas5-0/+128
2015-06-04Add support for parsing VOID_TYPE node.Andrei Karas5-4/+126
2015-06-04Move base nodes into base directory.Andrei Karas13-24/+27
2015-06-04Rename parsers to better names.Andrei Karas12-36/+39
2015-06-04Add macro and function for log int fields if it non zero.Andrei Karas7-12/+39
2015-06-04Add missing nodes and field to RESULT_DECL.Andrei Karas9-12/+41
2015-06-04Add most nodes and properties reading in functiontypenode.Andrei Karas4-1/+51
2015-06-04Add base node TypeNode.Andrei Karas8-9/+149
2015-06-04Add support for getting decl attribute.Andrei Karas1-0/+6
2015-06-03Create base DeclNode and parser for it.Andrei Karas6-4/+137
2015-06-03Add tag for nodes. It allow describe parent node relation type.Andrei Karas5-23/+84
2015-06-03Add support for addtional indent in logging.Andrei Karas4-3/+34
Change default indent step from 2 to 1 space.
2015-06-03Add some more FUNCTION_DECL nodes.Andrei Karas3-1/+50
2015-06-03Add reading for all default nodes for FUNC_DECL node.Andrei Karas8-12/+89
2015-06-03Improve a bit shared logic for create and parse nodes.Andrei Karas3-34/+22