Searched refs:dump_to_pp (Results 1 - 25 of 36) sorted by relevance

12

/netbsd-current/external/gpl3/gcc/dist/gcc/analyzer/
H A Dregion.cc581 dump_to_pp (&pp, simple);
604 dump_to_pp (&pp, simple);
833 /* Implementation of region::dump_to_pp vfunc for frame_region. */
836 frame_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::frame_region
904 /* Implementation of region::dump_to_pp vfunc for globals_region. */
907 globals_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::globals_region
917 /* Implementation of region::dump_to_pp vfunc for code_region. */
920 code_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::code_region
930 /* Implementation of region::dump_to_pp vfunc for function_region. */
933 function_region::dump_to_pp (pretty_printe function in class:ana::function_region
952 label_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::label_region
971 stack_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::stack_region
984 heap_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::heap_region
1004 root_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::root_region
1038 symbolic_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::symbolic_region
1066 decl_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::decl_region
1269 field_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::field_region
1321 element_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::element_region
1387 offset_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::offset_region
1443 sized_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::sized_region
1503 cast_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::cast_region
1528 heap_allocated_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::heap_allocated_region
1541 alloca_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::alloca_region
1554 string_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::string_region
1576 bit_range_region::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::bit_range_region
1645 unknown_region::dump_to_pp (pretty_printer *pp, bool /*simple*/) const function in class:ana::unknown_region
[all...]
H A Dsvalue.cc77 dump_to_pp (&pp, simple);
89 dump_to_pp (&pp, simple);
710 /* Implementation of svalue::dump_to_pp vfunc for region_svalue. */
713 region_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::region_svalue
718 m_reg->dump_to_pp (pp, simple);
725 m_reg->dump_to_pp (pp, simple);
805 /* Implementation of svalue::dump_to_pp vfunc for constant_svalue. */
808 constant_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::constant_svalue
903 /* Implementation of svalue::dump_to_pp vfunc for unknown_svalue. */
906 unknown_svalue::dump_to_pp (pretty_printe function in class:ana::unknown_svalue
967 poisoned_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::poisoned_svalue
1011 initial_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::initial_svalue
1090 unaryop_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::unaryop_svalue
1187 binop_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::binop_svalue
1260 sub_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::sub_svalue
1318 repeated_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::repeated_svalue
1444 bits_within_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::bits_within_svalue
1515 widening_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::widening_svalue
1672 placeholder_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::placeholder_svalue
1693 unmergeable_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::unmergeable_svalue
1746 compound_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::compound_svalue
1880 conjured_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::conjured_svalue
1915 asm_output_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::asm_output_svalue
1981 const_fn_result_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::const_fn_result_svalue
[all...]
H A Dsm.cc69 /* Base implementation of dump_to_pp vfunc. */
72 state_machine::state::dump_to_pp (pretty_printer *pp) const function in class:ana::state_machine::state
84 dump_to_pp (&pp);
129 state_machine::dump_to_pp (pretty_printer *pp) const function in class:ana::state_machine
136 s->dump_to_pp (pp);
H A Dpending-diagnostic.cc59 interesting_t::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::interesting_t
68 reg->dump_to_pp (pp, simple);
H A Dregion.h153 virtual void dump_to_pp (pretty_printer *pp, bool simple) const = 0;
311 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
371 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
397 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
427 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
463 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
494 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
522 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
547 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
609 void dump_to_pp (pretty_printe
[all...]
H A Dregion-model-asm.cc203 dst_reg->dump_to_pp (logger->get_printer (), true);
243 src_sval->dump_to_pp (logger->get_printer (), true);
254 reachable_regs.dump_to_pp (logger->get_printer ());
H A Dregion-model-reachability.h101 void dump_to_pp (pretty_printer *pp) const;
H A Dstore.cc87 sval->dump_to_pp (pp, simple);
97 uncertainty_t::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::uncertainty_t
116 dump_to_pp (&pp, simple);
149 dump_to_pp (&pp, simple);
161 dump_to_pp (&pp, simple);
210 bit_range::dump_to_pp (pretty_printer *pp) const function in class:ana::bit_range
214 bytes.dump_to_pp (pp);
233 dump_to_pp (&pp);
381 byte_range::dump_to_pp (pretty_printer *pp) const function in class:ana::byte_range
404 dump_to_pp (
446 concrete_binding::dump_to_pp (pretty_printer *pp, bool) const function in class:ana::concrete_binding
476 symbolic_binding::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::symbolic_binding
596 binding_map::dump_to_pp (pretty_printer *pp, bool simple, function in class:ana::binding_map
1172 binding_cluster::dump_to_pp (pretty_printer *pp, bool simple, function in class:ana::binding_cluster
2240 store::dump_to_pp (pretty_printer *pp, bool simple, bool multiline, function in class:ana::store
[all...]
H A Dsvalue.h99 virtual void dump_to_pp (pretty_printer *pp, bool simple) const = 0;
236 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
285 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
332 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
402 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
511 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
561 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
635 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
731 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
812 void dump_to_pp (pretty_printe
[all...]
H A Dstore.h178 void dump_to_pp (pretty_printer *pp, bool simple) const;
215 virtual void dump_to_pp (pretty_printer *pp, bool simple) const = 0;
237 void dump_to_pp (pretty_printer *pp) const;
297 void dump_to_pp (pretty_printer *pp) const;
364 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
429 void dump_to_pp (pretty_printer *pp, bool simple) const FINAL OVERRIDE;
500 void dump_to_pp (pretty_printer *pp, bool simple, bool multiline) const;
565 void dump_to_pp (pretty_printer *pp, bool simple, bool multiline) const;
699 void dump_to_pp (pretty_printer *pp, bool summarize, bool multiline,
H A Dregion-model-reachability.cc321 element->dump_to_pp (pp, true);
329 reachable_regions::dump_to_pp (pretty_printer *pp) const function in class:ana::reachable_regions
357 dump_to_pp (&pp);
H A Dfeasible-graph.cc101 m_state.get_model ().dump_to_pp (pp, true, true);
132 m_rc->dump_to_pp (pp);
266 dest_fnode->get_state ().dump_to_pp (pp, true, true);
H A Dprogram-state.cc70 extrinsic_state::dump_to_pp (pretty_printer *pp) const function in class:ana::extrinsic_state
78 checker->dump_to_pp (pp);
91 dump_to_pp (&pp);
208 m_global_state->dump_to_pp (pp);
233 sval->dump_to_pp (pp, simple);
237 e.m_state->dump_to_pp (pp);
253 e.m_origin->dump_to_pp (pp, simple);
849 m_region_model->dump_to_pp (pp, true, false);
873 program_state::dump_to_pp (const extrinsic_state &ext_state, function in class:ana::program_state
885 m_region_model->dump_to_pp (p
[all...]
H A Dconstraint-manager.h60 void dump_to_pp (pretty_printer *pp) const;
85 void dump_to_pp (pretty_printer *pp, bool show_types) const;
127 void dump_to_pp (pretty_printer *pp, bool show_types) const;
416 void dump_to_pp (pretty_printer *pp, bool multiline) const;
H A Dprogram-state.h52 void dump_to_pp (pretty_printer *pp) const;
210 void dump_to_pp (const extrinsic_state &ext_state, bool simple,
H A Dsm.h51 virtual void dump_to_pp (pretty_printer *pp) const;
137 void dump_to_pp (pretty_printer *pp) const;
H A Dregion-model.h48 void dump_to_pp (pretty_printer *pp) const;
92 one_way_id_map<T>::dump_to_pp (pretty_printer *pp) const function in class:ana::one_way_id_map
118 dump_to_pp (&pp);
168 void dump_to_pp (pretty_printer *pp, bool simple, bool multiline) const;
533 void dump_to_pp (pretty_printer *pp, bool simple) const;
575 void dump_to_pp (pretty_printer *pp, bool simple, bool multiline) const;
1197 void dump_to_pp (pretty_printer *pp, bool simple) const;
1225 virtual void dump_to_pp (pretty_printer *pp) const = 0;
1246 void dump_to_pp (pretty_printer *pp) const FINAL OVERRIDE;
1262 void dump_to_pp (pretty_printe
[all...]
H A Dsm-malloc.cc131 void dump_to_pp (pretty_printer *pp) const FINAL OVERRIDE;
158 void dump_to_pp (pretty_printer *pp) const;
216 virtual void dump_to_pp (pretty_printer *pp) const = 0;
248 void dump_to_pp (pretty_printer *pp) const FINAL OVERRIDE;
264 void dump_to_pp (pretty_printer *pp) const FINAL OVERRIDE;
489 deallocator::dump_to_pp (pretty_printer *pp) const function in class:ana::__anon8::deallocator
535 dump_to_pp (&pp);
575 custom_deallocator_set::dump_to_pp (pretty_printer *pp) const function in class:ana::__anon8::custom_deallocator_set
584 d->dump_to_pp (pp);
612 standard_deallocator_set::dump_to_pp (pretty_printe function in class:ana::__anon8::standard_deallocator_set
1426 allocation_state::dump_to_pp (pretty_printer *pp) const function in class:ana::__anon8::allocation_state
[all...]
H A Dengine.cc272 /* Implementation of svalue::dump_to_pp vfunc for setjmp_svalue. */
275 setjmp_svalue::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::setjmp_svalue
409 sval->dump_to_pp (logger->get_printer (), true);
810 sval->dump_to_pp (logger->get_printer (), true);
1177 state.dump_to_pp (ext_state, false, true, pp);
1265 exploded_node::dump_to_pp (pretty_printer *pp,
1275 m_ps.get_state ().dump_to_pp (ext_state, false, true, pp);
1289 dump_to_pp (&pp, ext_state);
2565 state.dump_to_pp (m_ext_state, true, false, pp);
2599 pruned_state.dump_to_pp (m_ext_stat
[all...]
H A Dregion-model-impl-calls.cc182 call_details::dump_to_pp (pretty_printer *pp, bool simple) const function in class:ana::call_details
189 m_lhs_region->dump_to_pp (pp, simple);
197 arg_sval->dump_to_pp (pp, simple);
211 dump_to_pp (&pp, simple);
H A Dpending-diagnostic.h37 void dump_to_pp (pretty_printer *pp, bool simple) const;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/analyzer/
H A Dsm.cc113 state_machine::dump_to_pp (pretty_printer *pp) const
H A Dsm.h92 void dump_to_pp (pretty_printer *pp) const;
H A Dconstraint-manager.h186 void dump_to_pp (pretty_printer *pp) const;
H A Dregion-model.h158 void dump_to_pp (pretty_printer *pp) const;
223 id_map<T>::dump_to_pp (pretty_printer *pp) const function in class:ana::id_map
263 dump_to_pp (&pp);
287 void dump_to_pp (pretty_printer *pp) const;
334 one_way_id_map<T>::dump_to_pp (pretty_printer *pp) const function in class:ana::one_way_id_map
360 dump_to_pp (&pp);
894 void dump_to_pp (const region_model &model,
1703 void dump_to_pp (pretty_printer *pp, bool summarize) const;
2089 void dump_to_pp (pretty_printer *pp) const;
2137 void dump_to_pp (pretty_printe
[all...]

Completed in 326 milliseconds

12