aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/cilk.h
blob: ae96f53c37c26cef8510f6859d724eacedcc1b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* This file is part of the Intel(R) Cilk(TM) Plus support
   This file contains Cilk Support files.
   Copyright (C) 2013-2014 Free Software Foundation, Inc.
   Contributed by Balaji V. Iyer <balaji.v.iyer@intel.com>,
                  Intel Corporation

   This file is part of GCC.

   GCC is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   GCC is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with GCC; see the file COPYING3.  If not see
   <http://www.gnu.org/licenses/>.  */

#ifndef GCC_CILK_H
#define GCC_CILK_H

/* Frame status bits known to compiler.  */
#define CILK_FRAME_UNSYNCHED 0x02
#define CILK_FRAME_DETACHED  0x04
#define CILK_FRAME_EXCEPTING 0x10
#define CILK_FRAME_VERSION   (1 << 24)

enum cilk_tree_index  {
/* All the built-in functions for Cilk keywords.  */
  CILK_TI_F_WORKER = 0,               /* __cilkrts_get_worker ().  */
  CILK_TI_F_SYNC,                     /* __cilkrts_sync ().  */
  CILK_TI_F_DETACH,                   /* __cilkrts_detach (...).   */
  CILK_TI_F_ENTER,                    /* __cilkrts_enter_frame (...).  */
  CILK_TI_F_ENTER_FAST,               /* __cilkrts_enter_frame_fast (.).  */
  CILK_TI_F_LEAVE,                    /* __cilkrts_leave_frame (...).  */
  CILK_TI_F_POP,                      /* __cilkrts_pop_frame (...).  */
  CILK_TI_F_RETHROW,                  /* __cilkrts_rethrow (...).  */
  CILK_TI_F_SAVE_FP,                  /* __cilkrts_save_fp_ctrl_state (...).  */
  /* __cilkrts_stack_frame struct fields.  */
  CILK_TI_FRAME_FLAGS,                /* stack_frame->flags.  */
  CILK_TI_FRAME_PARENT,               /* stack_frame->parent.  */
  CILK_TI_FRAME_WORKER,               /* stack_frame->worker.  */
  CILK_TI_FRAME_EXCEPTION,            /* stack_frame->except_data.  */
  CILK_TI_FRAME_CONTEXT,              /* stack_frame->context[4].  */
  CILK_TI_FRAME_PEDIGREE,             /* stack_frame->pedigree.  */

  /* __cilkrts_worker struct fields.  */
  CILK_TI_WORKER_CUR,                 /* worker->current_stack_frame.  */
  CILK_TI_WORKER_TAIL,                /* worker->tail.  */
  CILK_TI_WORKER_PEDIGREE,            /* worker->pedigree.  */

  /* __cilkrts_pedigree struct fields.  */
  CILK_TI_PEDIGREE_RANK,              /* pedigree->rank.  */
  CILK_TI_PEDIGREE_PARENT,            /* pedigree->parent.  */
  
  /* Types.  */
  CILK_TI_FRAME_TYPE,                 /* struct __cilkrts_stack_frame.  */
  CILK_TI_FRAME_PTR,                  /* __cilkrts_stack_frame *.  */
  CILK_TI_WORKER_TYPE,                /* struct __cilkrts_worker.  */
  CILK_TI_PEDIGREE_TYPE,              /* struct __cilkrts_pedigree.  */
  CILK_TI_MAX
};

extern GTY (()) tree cilk_trees[CILK_TI_MAX];

#define cilk_worker_fndecl            cilk_trees[CILK_TI_F_WORKER]
#define cilk_sync_fndecl              cilk_trees[CILK_TI_F_SYNC]
#define cilk_synched_fndecl           cilk_trees[CILK_TI_F_SYNCED]
#define cilk_detach_fndecl            cilk_trees[CILK_TI_F_DETACH]
#define cilk_enter_fndecl             cilk_trees[CILK_TI_F_ENTER]
#define cilk_enter_fast_fndecl        cilk_trees[CILK_TI_F_ENTER_FAST]
#define cilk_leave_fndecl             cilk_trees[CILK_TI_F_LEAVE]
#define cilk_rethrow_fndecl           cilk_trees[CILK_TI_F_RETHROW]
#define cilk_pop_fndecl               cilk_trees[CILK_TI_F_POP]
#define cilk_save_fp_fndecl           cilk_trees[CILK_TI_F_SAVE_FP]

#define cilk_worker_type_fndecl       cilk_trees[CILK_TI_WORKER_TYPE]
#define cilk_frame_type_decl          cilk_trees[CILK_TI_FRAME_TYPE]
#define cilk_frame_ptr_type_decl      cilk_trees[CILK_TI_FRAME_PTR]
#define cilk_pedigree_type_decl       cilk_trees[CILK_TI_PEDIGREE_TYPE]

extern void expand_builtin_cilk_detach (tree);
extern void expand_builtin_cilk_pop_frame (tree);
extern tree cilk_arrow (tree, int, bool);
extern tree cilk_dot (tree, int, bool);
extern void cilk_init_builtins (void);
extern void gimplify_cilk_sync (tree *, gimple_seq *);
extern tree cilk_call_setjmp (tree);

/* Returns true if Cilk Plus is enabled and if F->cilk_frame_decl is not
   NULL_TREE.  */

inline bool
fn_contains_cilk_spawn_p (function *f)
{
  return (flag_cilkplus 
	  && (f->calls_cilk_spawn || f->cilk_frame_decl != NULL_TREE));
}

#endif