Lines Matching defs:node
58 cgraph_node_ptr node;
71 node = cgraph_get_create_node(track_function_decl);
72 gcc_assert(node);
73 cgraph_create_edge(cgraph_get_node(current_function_decl), node,
93 varpool_node_ptr node;
95 FOR_EACH_VARIABLE(node) {
96 tree var = NODE_DECL(node);
438 static inline bool string_equal(tree node, const char *string, int length)
440 if (TREE_STRING_LENGTH(node) < length)
442 if (TREE_STRING_LENGTH(node) > length + 1)
444 if (TREE_STRING_LENGTH(node) == length + 1 &&
445 TREE_STRING_POINTER(node)[length] != '\0')
447 return !memcmp(TREE_STRING_POINTER(node), string, length);
449 #define STRING_EQUAL(node, str) string_equal(node, str, strlen(str))