Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
_flow_graph_node_impl.h File Reference
Include dependency graph for _flow_graph_node_impl.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  internal::function_input_queue< T, A >
 
class  internal::function_input_base< Input, Policy, A, ImplType >
 Input and scheduling for a function node that takes a type Input as input. More...
 
class  internal::function_input_base< Input, Policy, A, ImplType >::operation_type
 
class  internal::function_input< Input, Output, Policy, A >
 Implements methods for a function node that takes a type Input as input and sends. More...
 
struct  internal::clear_element< N >
 
struct  internal::clear_element< 1 >
 
class  internal::multifunction_input< Input, OutputPortSet, Policy, A >
 Implements methods for a function node that takes a type Input as input. More...
 
struct  internal::emit_element< N >
 
struct  internal::emit_element< 1 >
 
class  internal::continue_input< Output, Policy >
 Implements methods for an executable node that takes continue_msg as input. More...
 
class  internal::function_output< Output >
 Implements methods for both executable and function nodes that puts Output to its successors. More...
 
class  internal::multifunction_output< Output >
 

Namespaces

 internal
 

Macros

#define __TBB__flow_graph_node_impl_H
 

Functions

template<size_t N, typename MOP >
tbb::flow::tuple_element< N, typename MOP::output_ports_type >::typeoutput_port (MOP &op)
 
void check_task_and_spawn (graph &g, task *t)
 
template<typename CompositeType >
void add_nodes_impl (CompositeType *, bool)
 
template<typename CompositeType , typename NodeType1 , typename... NodeTypes>
void add_nodes_impl (CompositeType *c_node, bool visible, const NodeType1 &n1, const NodeTypes &... n)
 

Macro Definition Documentation

◆ __TBB__flow_graph_node_impl_H

#define __TBB__flow_graph_node_impl_H

Definition at line 19 of file flow_graph.h.

Function Documentation

◆ add_nodes_impl() [1/2]

template<typename CompositeType >
void internal::add_nodes_impl ( CompositeType *  ,
bool   
)

Definition at line 879 of file _flow_graph_node_impl.h.

879 {}

Referenced by add_nodes_impl().

Here is the caller graph for this function:

◆ add_nodes_impl() [2/2]

template<typename CompositeType , typename NodeType1 , typename... NodeTypes>
void internal::add_nodes_impl ( CompositeType *  c_node,
bool  visible,
const NodeType1 &  n1,
const NodeTypes &...  n 
)

Definition at line 882 of file _flow_graph_node_impl.h.

882  {
883  void *addr = const_cast<NodeType1 *>(&n1);
884 
885  fgt_alias_port(c_node, addr, visible);
886  add_nodes_impl(c_node, visible, n...);
887  }
void add_nodes_impl(CompositeType *, bool)
static void fgt_alias_port(void *, void *, bool)
void * addr

References add_nodes_impl(), addr, and tbb::internal::fgt_alias_port().

Here is the call graph for this function:

◆ check_task_and_spawn()

void internal::check_task_and_spawn ( graph &  g,
task t 
)
inline

Definition at line 648 of file _flow_graph_node_impl.h.

648  {
649  if (t && t != SUCCESSFULLY_ENQUEUED) {
651  }
652  }
void spawn_in_graph_arena(graph &g, tbb::task &arena_task)
Spawns a task inside graph arena.
static tbb::task *const SUCCESSFULLY_ENQUEUED

References tbb::flow::interface10::internal::spawn_in_graph_arena(), and tbb::flow::internal::SUCCESSFULLY_ENQUEUED.

Referenced by internal::emit_element< N >::emit_this(), and internal::emit_element< 1 >::emit_this().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ output_port()

template<size_t N, typename MOP >
tbb::flow::tuple_element<N, typename MOP::output_ports_type>::type& internal::output_port ( MOP &  op)

Definition at line 644 of file _flow_graph_node_impl.h.

644  {
645  return tbb::flow::get<N>(op.output_ports());
646  }

Copyright © 2005-2019 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.