/local/lecs/lecs/risc_v0.4.0/sources/build/risc_v0.4.0/src/segment_graph/segment_graph.cpp File Reference

#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"
Include dependency graph for segment_graph.cpp:

Defines

#define DECOMPOSE_EXPR_IN_BINARY_OP(Operator)
#define DECOMPOSE_EXPR_IN_UNARY_OP(Operator)

Functions

int function_annotation_parserparse ()

Variables

FunctionAnnotationfunction_annotation

Define Documentation

#define DECOMPOSE_EXPR_IN_BINARY_OP ( Operator   ) 
Value:
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   ) 
Value:
if(is##Operator(expr)) {                                           \
    Operator *op = is##Operator(expr);                               \
    decompose_expression_with_boundary_calls(op->get_operand(), bb,  \
        duplicate_segments);                                         \
    return;                                                          \
  }

Function Documentation

int function_annotation_parserparse (  ) 

Variable Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines

Generated on 31 Jul 2017 by  doxygen 1.6.1