Lines Matching refs:t
417 static inline bool tree_fits_shwi_p(const_tree t) in tree_fits_shwi_p() argument
419 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST) in tree_fits_shwi_p()
422 if (TREE_INT_CST_HIGH(t) == 0 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) >= 0) in tree_fits_shwi_p()
425 …if (TREE_INT_CST_HIGH(t) == -1 && (HOST_WIDE_INT)TREE_INT_CST_LOW(t) < 0 && !TYPE_UNSIGNED(TREE_TY… in tree_fits_shwi_p()
431 static inline bool tree_fits_uhwi_p(const_tree t) in tree_fits_uhwi_p() argument
433 if (t == NULL_TREE || TREE_CODE(t) != INTEGER_CST) in tree_fits_uhwi_p()
436 return TREE_INT_CST_HIGH(t) == 0; in tree_fits_uhwi_p()
439 static inline HOST_WIDE_INT tree_to_shwi(const_tree t) in tree_to_shwi() argument
441 gcc_assert(tree_fits_shwi_p(t)); in tree_to_shwi()
442 return TREE_INT_CST_LOW(t); in tree_to_shwi()
445 static inline unsigned HOST_WIDE_INT tree_to_uhwi(const_tree t) in tree_to_uhwi() argument
447 gcc_assert(tree_fits_uhwi_p(t)); in tree_to_uhwi()
448 return TREE_INT_CST_LOW(t); in tree_to_uhwi()
959 static inline void debug_tree(const_tree t) in debug_tree() argument
961 debug_tree(CONST_CAST_TREE(t)); in debug_tree()
969 #define debug_tree(t) debug_tree(CONST_CAST_TREE(t)) argument