Lines Matching defs:node

122 /* Return the variable annotation for T, which must be a _DECL node.
135 /* Return the variable annotation for T, which must be a _DECL node.
144 /* Return the function annotation for T, which must be a FUNCTION_DECL node.
156 /* Return the function annotation for T, which must be a FUNCTION_DECL node.
167 node. Return NULL if the statement annotation doesn't exist. */
179 node. Create the statement annotation if it doesn't exist. */
304 /* Delink an immediate_uses node from its chain. */
308 /* Return if this node is not in a list. */
318 /* Link ssa_imm_use node LINKNODE into the chain for LIST. */
322 /* Link the new node at the head of the list. If we are in the process of
330 /* Link ssa_imm_use node LINKNODE into the chain for DEF. */
358 /* Link ssa_imm_use node LINKNODE into the chain for DEF, with use occurring
370 /* Relink a new node in place of an old node in the list. */
372 relink_imm_use (ssa_use_operand_t *node, ssa_use_operand_t *old)
374 /* The node one had better be in the same list. */
375 gcc_assert (*(old->use) == *(node->use));
376 node->prev = old->prev;
377 node->next = old->next;
380 old->prev->next = node;
381 old->next->prev = node;
382 /* Remove the old node from the list. */
387 /* Relink ssa_imm_use node LINKNODE into the chain for OLD, with use occurring
1233 /* If there is a single DEF in the PHI node which matches FLAG, return it.
1261 /* If the PHI node doesn't the operand type we care about, we're done. */
1290 /* If the PHI node doesn't the operand type we care about, we're done. */
1313 placeholder node from the list. */
1378 /* LInk iter node in after last_p. */
1396 stmt and use, which indicates a marker node. */