/* brig-function.h -- declaration of brig_function class. Copyright (C) 2016-2017 Free Software Foundation, Inc. Contributed by Pekka Jaaskelainen for General Processor Tech. 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 . */ #ifndef BRIG_FUNCTION_H #define BRIG_FUNCTION_H #include "config.h" #include "system.h" #include "ansidecl.h" #include "coretypes.h" #include "opts.h" #include "tree.h" #include "tree-iterator.h" #include "hsa-brig-format.h" class brig_to_generic; #include #include #include #include #include "phsa.h" typedef std::map label_index; typedef std::map variable_index; typedef std::vector tree_stl_vec; /* There are 128 c regs and 2048 s/d/q regs each in the HSAIL. */ #define BRIG_2_TREE_HSAIL_C_REG_COUNT (128) #define BRIG_2_TREE_HSAIL_S_REG_COUNT (2048) #define BRIG_2_TREE_HSAIL_D_REG_COUNT (2048) #define BRIG_2_TREE_HSAIL_Q_REG_COUNT (2048) #define BRIG_2_TREE_HSAIL_TOTAL_REG_COUNT \ (BRIG_2_TREE_HSAIL_C_REG_COUNT + BRIG_2_TREE_HSAIL_S_REG_COUNT \ + BRIG_2_TREE_HSAIL_D_REG_COUNT + BRIG_2_TREE_HSAIL_Q_REG_COUNT) /* Holds data for the currently built GENERIC function. */ class brig_function { public: typedef std::map var_offset_table; private: struct reg_decl_index_entry { tree m_var_decl; }; public: brig_function (const BrigDirectiveExecutable *exec, brig_to_generic *parent); ~brig_function (); tree arg_variable (const BrigDirectiveVariable *var) const; void add_arg_variable (const BrigDirectiveVariable *brigVar, tree treeDecl); void append_kernel_arg (const BrigDirectiveVariable *var, size_t size, size_t alignment); size_t kernel_arg_offset (const BrigDirectiveVariable *var) const; void add_id_variables (); tree label (const std::string &name); tree add_local_variable (std::string name, tree type); tree get_m_var_declfor_reg (const BrigOperandRegister *reg); bool convert_to_wg_function (); void add_wi_loop (int dim, tree_stmt_iterator *header_entry, tree_stmt_iterator *branch_after); tree emit_metadata (tree stmt_list); tree emit_launcher_and_metadata (); tree append_statement (tree stmt); void create_alloca_frame (); void finish (); void finish_kernel (); void append_return_stmt (); bool has_function_scope_var (const BrigBase* var) const; void analyze_calls (); const BrigDirectiveExecutable *m_brig_def; bool m_is_kernel; bool m_is_finished; std::string m_name; tree m_current_bind_expr; tree m_func_decl; tree m_entry_label_stmt; tree m_exit_label; /* The __context function argument. */ tree m_context_arg; /* The __group_base_ptr argument in the current function. Points to the start of the group segment for the kernel instance. */ tree m_group_base_arg; /* The __private_base_ptr argument in the current function. Points to the start of the private segment. */ tree m_private_base_arg; /* The return value variable for the current function. */ tree m_ret_value; /* The offsets of the kernel arguments in the __arg blob pointing to the kernel argument space. */ size_t m_next_kernarg_offset; /* The largest kernel argument variable alignment. */ size_t m_kernarg_max_align; var_offset_table m_kernarg_offsets; /* Argument variables in the currently handled binding expression (argument segment). */ variable_index m_arg_variables; /* The brig variable for the function return value. */ const BrigDirectiveVariable *m_ret_value_brig_var; /* The function local temporary variable for the return value. */ tree m_ret_temp; /* Labels in the current function are collected here so we can refer to them from jumps before they have been placed to the function. */ label_index m_label_index; /* If the kernel contains at least one barrier, this is set to true. */ bool m_has_barriers; /* True if the function has at least one alloca instruction. */ bool m_has_allocas; /* If the kernel containts at least one function call that _may_ contain a barrier call, this is set to true. */ bool m_has_function_calls_with_barriers; /* Set to true after this function has been analyzed for barrier and dispatch packet instruction usage in the final call graph analysis. */ bool m_calls_analyzed; /* True in case the function was successfully converted to a WG function. */ bool m_is_wg_function; /* Work-item ID related variables are cached in the entry of the kernel function in order to use them directly in address computations, leading to more efficient optimizations. The references to the local variables are stored here. */ tree m_local_id_vars[3]; tree m_cur_wg_size_vars[3]; tree m_wg_id_vars[3]; tree m_wg_size_vars[3]; tree m_grid_size_vars[3]; /* Set to true in case the kernel contains at least one dispatch packet (work-item ID-related) builtin call that could not be expanded to tree nodes. */ bool m_has_unexpanded_dp_builtins; /* Points to the instruction after which the real kernel code starts. Usually points to the last WI ID variable initialization statement. */ tree_stmt_iterator m_kernel_entry; /* True if we are currently generating the contents of an arg block. */ bool m_generating_arg_block; /* A collection of function scope variables seen so far for resolving variable references vs. module scope declarations. */ std::set m_function_scope_vars; /* The functions called by this function. */ std::vector m_called_functions; brig_to_generic *m_parent; /* The metadata of the function that should be stored with the binary and passed to the HSA runtime: */ phsa_descriptor m_descriptor; private: /* Bookkeeping for the different HSA registers and their tree declarations for the currently generated function. */ reg_decl_index_entry *m_regs[BRIG_2_TREE_HSAIL_TOTAL_REG_COUNT]; }; #endif