#include "segment_graph.h"
#include <iostream>
#include <utility>
#include <algorithm>
#include <vector>
#include "boost/graph/breadth_first_search.hpp"
#include "cached_function_ast_attributes.h"
#include "edge_property_writer.h"
#include "function_annotation_attributes.h"
#include "graph_helper.h"
#include "graph_property_writer.h"
#include "port_call_attribute.h"
#include "reference_attributes.h"
#include "vertex_property_writer.h"
#include "lex.function_annotation_parser.h"
#include "parser.function_annotation_parser.tab.h"
#include "../tools/ast_attribute_color.h"
#include "../tools/class_is_derived_from.h"
#include "../tools/function_helper.h"
#include "../tools/misc.h"
#include "../tools/variable_helper.h"
#include "../internal_representation/cthread.h"
#include "../internal_representation/definition.h"
#include "../internal_representation/design.h"
#include "../internal_representation/function.h"
#include "../internal_representation/hierarchical_channel.h"
#include "../internal_representation/method.h"
#include "../internal_representation/module.h"
#include "../internal_representation/thread.h"
Defines | |
#define | DECOMPOSE_EXPR_IN_BINARY_OP(Operator) |
#define | DECOMPOSE_EXPR_IN_UNARY_OP(Operator) |
Functions | |
int | function_annotation_parserparse () |
Variables | |
FunctionAnnotation * | function_annotation |
#define DECOMPOSE_EXPR_IN_BINARY_OP | ( | Operator | ) |
if(is##Operator(expr)) { \ Operator *op = is##Operator(expr); \ decompose_expression_with_boundary_calls(op->get_lhs_operand(), bb, \ duplicate_segments); \ decompose_expression_with_boundary_calls(op->get_rhs_operand(), bb, \ duplicate_segments); \ return; \ }
#define DECOMPOSE_EXPR_IN_UNARY_OP | ( | Operator | ) |
if(is##Operator(expr)) { \ Operator *op = is##Operator(expr); \ decompose_expression_with_boundary_calls(op->get_operand(), bb, \ duplicate_segments); \ return; \ }
int function_annotation_parserparse | ( | ) |