Lines Matching refs:decl
225 static inline bool is_simple_builtin(tree decl)
227 if (decl && DECL_BUILT_IN_CLASS(decl) != BUILT_IN_NORMAL)
230 switch (DECL_FUNCTION_CODE(decl)) {
308 static inline struct cgraph_node *cgraph_create_node(tree decl)
310 return cgraph_node(decl);
313 static inline struct cgraph_node *cgraph_get_create_node(tree decl)
315 struct cgraph_node *node = cgraph_get_node(decl);
317 return node ? node : cgraph_node(decl);
363 static inline void varpool_add_new_variable(tree decl)
365 varpool_finalize_decl(decl);
376 #define NODE_DECL(node) (node)->decl
551 #define NODE_DECL(node) (node)->symbol.decl
574 static inline const char *get_decl_section_name(const_tree decl)
576 if (DECL_SECTION_NAME(decl) == NULL_TREE)
579 return TREE_STRING_POINTER(DECL_SECTION_NAME(decl));
685 #define NODE_DECL(node) (node)->decl
713 static inline const char *get_decl_section_name(const_tree decl)
715 return DECL_SECTION_NAME(decl);
720 #define cgraph_get_node(decl) cgraph_node::get(decl)
721 #define cgraph_get_create_node(decl) cgraph_node::get_create(decl)
722 #define cgraph_create_node(decl) cgraph_node::create(decl)
725 #define varpool_get_node(decl) varpool_node::get(decl)
750 static inline void change_decl_assembler_name(tree decl, tree name)
752 symtab->change_decl_assembler_name(decl, name);
755 static inline void varpool_finalize_decl(tree decl)
757 varpool_node::finalize_decl(decl);
760 static inline void varpool_add_new_variable(tree decl)
762 varpool_node::add(decl);
979 #define SET_DECL_ALIGN(decl, align) DECL_ALIGN(decl) = (align)
980 #define SET_DECL_MODE(decl, mode) DECL_MODE(decl) = (mode)