Home | History | Annotate | Download | only in gcc

Lines Matching defs:pass_waccess

2064 class pass_waccess : public gimple_opt_pass
2067 pass_waccess (gcc::context *);
2069 ~pass_waccess ();
2081 pass_waccess (pass_waccess &) = delete;
2082 void operator= (pass_waccess &) = delete;
2156 pass_waccess::pass_waccess (gcc::context *ctxt)
2170 pass_waccess::clone ()
2172 return new pass_waccess (m_ctxt);
2177 pass_waccess::~pass_waccess ()
2183 pass_waccess::set_pass_param (unsigned int n, bool early)
2193 pass_waccess::gate (function *)
2376 pass_waccess::check_alloca (gcall *stmt)
2400 pass_waccess::check_alloc_size_call (gcall *stmt)
2459 pass_waccess::check_strcat (gcall *stmt)
2487 pass_waccess::check_strncat (gcall *stmt)
2559 pass_waccess::check_stxcpy (gcall *stmt)
2600 pass_waccess::check_stxncpy (gcall *stmt)
2624 pass_waccess::check_strncmp (gcall *stmt)
2729 pass_waccess::check_memop_access (gimple *stmt, tree dest, tree src, tree size)
2751 pass_waccess::check_read_access (gimple *stmt, tree src,
2875 pass_waccess::maybe_warn_memmodel (gimple *stmt, tree ord_sucs,
2992 pass_waccess::check_atomic_memmodel (gimple *stmt, tree ord_sucs,
3007 pass_waccess::check_atomic_builtin (gcall *stmt)
3129 pass_waccess::check_builtin (gcall *stmt)
3309 pass_waccess::maybe_check_access_sizes (rdwr_map *rwm, tree fndecl, tree fntype,
3600 pass_waccess::check_call_access (gcall *stmt)
3662 pass_waccess::maybe_check_dealloc_call (gcall *call)
3794 pass_waccess::use_after_inval_p (gimple *inval_stmt, gimple *use_stmt,
3873 pass_waccess::warn_invalid_pointer (tree ref, gimple *use_stmt,
4143 pass_waccess::check_pointer_uses (gimple *stmt, tree ptr,
4280 pass_waccess::check_call (gcall *stmt)
4317 pass_waccess::check_stmt (gimple *stmt)
4379 pass_waccess::check_block (basic_block bb)
4397 pass_waccess::gimple_call_return_arg (gcall *call)
4443 pass_waccess::check_dangling_uses (tree var, tree decl, bool maybe /* = false */,
4474 pass_waccess::check_dangling_stores (basic_block bb,
4588 pass_waccess::check_dangling_stores ()
4599 pass_waccess::check_dangling_uses ()
4662 pass_waccess::check_call_dangling (gcall *call)
4689 pass_waccess::execute (function *fun)
4750 return new pass_waccess (ctxt);