Searched refs:debugargs (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/ |
H A D | lto-streamer-out.cc | 2414 vec<tree, va_gc> **debugargs = decl_debug_args_lookup (function); in output_function() local 2415 if (! debugargs) in output_function() 2419 streamer_write_uhwi (ob, (*debugargs)->length ()); in output_function() 2420 for (unsigned i = 0; i < (*debugargs)->length (); ++i) in output_function() 2421 stream_write_tree (ob, (**debugargs)[i], true); in output_function()
|
H A D | lto-streamer-in.cc | 1371 vec<tree, va_gc> **debugargs = decl_debug_args_insert (fn_decl); in input_function() local 1372 vec_safe_grow (*debugargs, n_debugargs, true); in input_function() 1374 (**debugargs)[i] = stream_read_tree (ib, data_in); in input_function()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
H A D | lto-streamer-out.c | 2333 vec<tree, va_gc> **debugargs = decl_debug_args_lookup (function); in output_function() local 2334 if (! debugargs) in output_function() 2338 streamer_write_uhwi (ob, (*debugargs)->length ()); in output_function() 2339 for (unsigned i = 0; i < (*debugargs)->length (); ++i) in output_function() 2340 stream_write_tree (ob, (**debugargs)[i], true); in output_function()
|
H A D | lto-streamer-in.c | 1358 vec<tree, va_gc> **debugargs = decl_debug_args_insert (fn_decl); 1359 vec_safe_grow (*debugargs, n_debugargs); 1361 (**debugargs)[i] = stream_read_tree (ib, data_in);
|