Home
last modified time | relevance | path

Searched refs:ob (Results 1 – 25 of 190) sorted by relevance

12345678

/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dunwind-dw2-fde.c85 __register_frame_info_bases (const void *begin, struct object *ob, in __register_frame_info_bases() argument
92 ob->pc_begin = (void *)-1; in __register_frame_info_bases()
93 ob->tbase = tbase; in __register_frame_info_bases()
94 ob->dbase = dbase; in __register_frame_info_bases()
95 ob->u.single = begin; in __register_frame_info_bases()
96 ob->s.i = 0; in __register_frame_info_bases()
97 ob->s.b.encoding = DW_EH_PE_omit; in __register_frame_info_bases()
99 ob->fde_end = NULL; in __register_frame_info_bases()
105 ob->next = unseen_objects; in __register_frame_info_bases()
106 unseen_objects = ob; in __register_frame_info_bases()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dunwind-dw2-fde.c85 __register_frame_info_bases (const void *begin, struct object *ob, in __register_frame_info_bases() argument
92 ob->pc_begin = (void *)-1; in __register_frame_info_bases()
93 ob->tbase = tbase; in __register_frame_info_bases()
94 ob->dbase = dbase; in __register_frame_info_bases()
95 ob->u.single = begin; in __register_frame_info_bases()
96 ob->s.i = 0; in __register_frame_info_bases()
97 ob->s.b.encoding = DW_EH_PE_omit; in __register_frame_info_bases()
99 ob->fde_end = NULL; in __register_frame_info_bases()
105 ob->next = unseen_objects; in __register_frame_info_bases()
106 unseen_objects = ob; in __register_frame_info_bases()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-streamer-out.cc41 streamer_write_string_cst (struct output_block *ob, in streamer_write_string_cst() argument
45 streamer_write_string_with_length (ob, index_stream, in streamer_write_string_cst()
57 write_identifier (struct output_block *ob, in write_identifier() argument
61 streamer_write_string_with_length (ob, index_stream, in write_identifier()
376 pack_ts_block_value_fields (struct output_block *ob, in pack_ts_block_value_fields() argument
384 stream_output_location (ob, bp, BLOCK_SOURCE_LOCATION (expr)); in pack_ts_block_value_fields()
386 stream_output_location (ob, bp, UNKNOWN_LOCATION); in pack_ts_block_value_fields()
393 pack_ts_translation_unit_decl_value_fields (struct output_block *ob, in pack_ts_translation_unit_decl_value_fields() argument
396 bp_pack_string (ob, bp, TRANSLATION_UNIT_LANGUAGE (expr), true); in pack_ts_translation_unit_decl_value_fields()
404 pack_ts_omp_clause_value_fields (struct output_block *ob, in pack_ts_omp_clause_value_fields() argument
[all …]
H A Dlto-streamer-out.cc58 clear_line_info (struct output_block *ob) in clear_line_info() argument
60 ob->current_file = NULL; in clear_line_info()
61 ob->current_line = 0; in clear_line_info()
62 ob->current_col = 0; in clear_line_info()
63 ob->current_sysp = false; in clear_line_info()
64 ob->reset_locus = true; in clear_line_info()
65 ob->emit_pwd = true; in clear_line_info()
69 ob->current_block = void_node; in clear_line_info()
79 struct output_block *ob = XCNEW (struct output_block); in create_output_block() local
84 ob->section_type = section_type; in create_output_block()
[all …]
H A Dgimple-streamer-out.cc39 output_phi (struct output_block *ob, gphi *phi) in output_phi() argument
43 streamer_write_record_start (ob, lto_gimple_code_to_tag (GIMPLE_PHI)); in output_phi()
44 streamer_write_uhwi (ob, SSA_NAME_VERSION (PHI_RESULT (phi))); in output_phi()
48 stream_write_tree (ob, gimple_phi_arg_def (phi, i), true); in output_phi()
49 streamer_write_uhwi (ob, gimple_phi_arg_edge (phi, i)->src->index); in output_phi()
50 bitpack_d bp = bitpack_create (ob->main_stream); in output_phi()
52 stream_output_location_and_block (ob, &bp, loc); in output_phi()
60 output_gimple_stmt (struct output_block *ob, struct function *fn, gimple *stmt) in output_gimple_stmt() argument
71 streamer_write_record_start (ob, tag); in output_gimple_stmt()
74 bp = bitpack_create (ob->main_stream); in output_gimple_stmt()
[all …]
H A Ddata-streamer-out.cc82 streamer_string_index (struct output_block *ob, const char *s, unsigned int len, in streamer_string_index() argument
92 slot = ob->string_hash_table->find_slot (&s_slot, INSERT); in streamer_string_index()
95 struct lto_output_stream *string_stream = ob->string_stream; in streamer_string_index()
97 struct string_slot *new_slot = XOBNEW (&ob->obstack, struct string_slot); in streamer_string_index()
103 string = tmp = XOBNEWVEC (&ob->obstack, char, len); in streamer_string_index()
132 streamer_write_string_with_length (struct output_block *ob, in streamer_write_string_with_length() argument
139 streamer_string_index (ob, s, len, persistent)); in streamer_write_string_with_length()
151 streamer_write_string (struct output_block *ob, in streamer_write_string() argument
156 streamer_write_string_with_length (ob, index_stream, string, in streamer_write_string()
170 bp_pack_string_with_length (struct output_block *ob, struct bitpack_d *bp, in bp_pack_string_with_length() argument
[all …]
H A Dgodump.cc558 go_append_string (struct obstack *ob, tree id) in go_append_string() argument
560 obstack_grow (ob, IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id)); in go_append_string()
589 go_append_artificial_name (struct obstack *ob, unsigned int index) in go_append_artificial_name() argument
594 obstack_grow (ob, "Godump_", 7); in go_append_artificial_name()
596 obstack_grow (ob, buf, strlen (buf)); in go_append_artificial_name()
605 go_append_decl_name (struct obstack *ob, tree decl, htab_t keyword_hash) in go_append_decl_name() argument
614 obstack_1grow (ob, '_'); in go_append_decl_name()
615 go_append_string (ob, DECL_NAME (decl)); in go_append_decl_name()
625 go_append_padding (struct obstack *ob, unsigned int from_offset, in go_append_padding() argument
636 index = go_append_artificial_name (ob, index); in go_append_padding()
[all …]
H A Dlto-cgraph.cc236 lto_output_edge (struct lto_simple_output_block *ob, struct cgraph_edge *edge, in lto_output_edge() argument
244 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_edge()
247 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_edge()
252 streamer_write_hwi_stream (ob->main_stream, ref); in lto_output_edge()
258 streamer_write_hwi_stream (ob->main_stream, ref); in lto_output_edge()
261 edge->count.stream_out (ob->main_stream); in lto_output_edge()
263 bp = bitpack_create (ob->main_stream); in lto_output_edge()
382 lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, in lto_output_node() argument
405 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_node()
407 streamer_write_hwi_stream (ob->main_stream, node->order); in lto_output_node()
[all …]
H A Dlto-section-out.cc155 struct lto_simple_output_block *ob in lto_create_simple_output_block() local
159 ob->section_type = section_type; in lto_create_simple_output_block()
160 ob->decl_state = lto_get_out_decl_state (); in lto_create_simple_output_block()
161 ob->main_stream = ((struct lto_output_stream *) in lto_create_simple_output_block()
164 return ob; in lto_create_simple_output_block()
171 lto_destroy_simple_output_block (struct lto_simple_output_block *ob) in lto_destroy_simple_output_block() argument
176 section_name = lto_get_section_name (ob->section_type, NULL, 0, NULL); in lto_destroy_simple_output_block()
183 header.main_size = ob->main_stream->total_size; in lto_destroy_simple_output_block()
186 lto_write_stream (ob->main_stream); in lto_destroy_simple_output_block()
192 free (ob->main_stream); in lto_destroy_simple_output_block()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-streamer-out.c40 streamer_write_string_cst (struct output_block *ob, in streamer_write_string_cst() argument
44 streamer_write_string_with_length (ob, index_stream, in streamer_write_string_cst()
56 write_identifier (struct output_block *ob, in write_identifier() argument
60 streamer_write_string_with_length (ob, index_stream, in write_identifier()
363 pack_ts_block_value_fields (struct output_block *ob, in pack_ts_block_value_fields() argument
371 stream_output_location (ob, bp, BLOCK_SOURCE_LOCATION (expr)); in pack_ts_block_value_fields()
373 stream_output_location (ob, bp, UNKNOWN_LOCATION); in pack_ts_block_value_fields()
380 pack_ts_translation_unit_decl_value_fields (struct output_block *ob, in pack_ts_translation_unit_decl_value_fields() argument
383 bp_pack_string (ob, bp, TRANSLATION_UNIT_LANGUAGE (expr), true); in pack_ts_translation_unit_decl_value_fields()
391 pack_ts_omp_clause_value_fields (struct output_block *ob, in pack_ts_omp_clause_value_fields() argument
[all …]
H A Dlto-streamer-out.c58 clear_line_info (struct output_block *ob) in clear_line_info() argument
60 ob->current_file = NULL; in clear_line_info()
61 ob->current_line = 0; in clear_line_info()
62 ob->current_col = 0; in clear_line_info()
63 ob->current_sysp = false; in clear_line_info()
64 ob->reset_locus = true; in clear_line_info()
65 ob->emit_pwd = true; in clear_line_info()
69 ob->current_block = void_node; in clear_line_info()
79 struct output_block *ob = XCNEW (struct output_block); in create_output_block() local
84 ob->section_type = section_type; in create_output_block()
[all …]
H A Dgimple-streamer-out.c39 output_phi (struct output_block *ob, gphi *phi) in output_phi() argument
43 streamer_write_record_start (ob, lto_gimple_code_to_tag (GIMPLE_PHI)); in output_phi()
44 streamer_write_uhwi (ob, SSA_NAME_VERSION (PHI_RESULT (phi))); in output_phi()
48 stream_write_tree (ob, gimple_phi_arg_def (phi, i), true); in output_phi()
49 streamer_write_uhwi (ob, gimple_phi_arg_edge (phi, i)->src->index); in output_phi()
50 bitpack_d bp = bitpack_create (ob->main_stream); in output_phi()
52 stream_output_location_and_block (ob, &bp, loc); in output_phi()
60 output_gimple_stmt (struct output_block *ob, struct function *fn, gimple *stmt) in output_gimple_stmt() argument
71 streamer_write_record_start (ob, tag); in output_gimple_stmt()
74 bp = bitpack_create (ob->main_stream); in output_gimple_stmt()
[all …]
H A Ddata-streamer-out.c82 streamer_string_index (struct output_block *ob, const char *s, unsigned int len, in streamer_string_index() argument
92 slot = ob->string_hash_table->find_slot (&s_slot, INSERT); in streamer_string_index()
95 struct lto_output_stream *string_stream = ob->string_stream; in streamer_string_index()
97 struct string_slot *new_slot = XOBNEW (&ob->obstack, struct string_slot); in streamer_string_index()
103 string = tmp = XOBNEWVEC (&ob->obstack, char, len); in streamer_string_index()
132 streamer_write_string_with_length (struct output_block *ob, in streamer_write_string_with_length() argument
139 streamer_string_index (ob, s, len, persistent)); in streamer_write_string_with_length()
151 streamer_write_string (struct output_block *ob, in streamer_write_string() argument
156 streamer_write_string_with_length (ob, index_stream, string, in streamer_write_string()
170 bp_pack_string_with_length (struct output_block *ob, struct bitpack_d *bp, in bp_pack_string_with_length() argument
[all …]
H A Dgodump.c566 go_append_string (struct obstack *ob, tree id) in go_append_string() argument
568 obstack_grow (ob, IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id)); in go_append_string()
597 go_append_artificial_name (struct obstack *ob, unsigned int index) in go_append_artificial_name() argument
602 obstack_grow (ob, "Godump_", 7); in go_append_artificial_name()
604 obstack_grow (ob, buf, strlen (buf)); in go_append_artificial_name()
613 go_append_decl_name (struct obstack *ob, tree decl, htab_t keyword_hash) in go_append_decl_name() argument
622 obstack_1grow (ob, '_'); in go_append_decl_name()
623 go_append_string (ob, DECL_NAME (decl)); in go_append_decl_name()
633 go_append_padding (struct obstack *ob, unsigned int from_offset, in go_append_padding() argument
644 index = go_append_artificial_name (ob, index); in go_append_padding()
[all …]
H A Dlto-cgraph.c232 lto_output_edge (struct lto_simple_output_block *ob, struct cgraph_edge *edge, in lto_output_edge() argument
240 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_edge()
243 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_edge()
248 streamer_write_hwi_stream (ob->main_stream, ref); in lto_output_edge()
254 streamer_write_hwi_stream (ob->main_stream, ref); in lto_output_edge()
257 edge->count.stream_out (ob->main_stream); in lto_output_edge()
259 bp = bitpack_create (ob->main_stream); in lto_output_edge()
378 lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, in lto_output_node() argument
401 streamer_write_enum (ob->main_stream, LTO_symtab_tags, LTO_symtab_last_tag, in lto_output_node()
403 streamer_write_hwi_stream (ob->main_stream, node->order); in lto_output_node()
[all …]
H A Dlto-section-out.c260 struct lto_simple_output_block *ob in lto_create_simple_output_block() local
264 ob->section_type = section_type; in lto_create_simple_output_block()
265 ob->decl_state = lto_get_out_decl_state (); in lto_create_simple_output_block()
266 ob->main_stream = ((struct lto_output_stream *) in lto_create_simple_output_block()
269 return ob; in lto_create_simple_output_block()
276 lto_destroy_simple_output_block (struct lto_simple_output_block *ob) in lto_destroy_simple_output_block() argument
281 section_name = lto_get_section_name (ob->section_type, NULL, 0, NULL); in lto_destroy_simple_output_block()
288 header.main_size = ob->main_stream->total_size; in lto_destroy_simple_output_block()
291 lto_write_stream (ob->main_stream); in lto_destroy_simple_output_block()
297 free (ob->main_stream); in lto_destroy_simple_output_block()
[all …]
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/
H A Dmdmx-ob.s22 ### Non-accumulator, non-CC-using .ob format ops.
33 add.ob $f10, $f8, $f9
39 add.ob $f10, $f8, $f9[6]
44 add.ob $f10, $f8, 0x10
51 alni.ob $f10, $f8, $f9, 3
59 alnv.ob $f10, $f8, $f9, $4
66 and.ob $f10, $f8, $f9
72 and.ob $f10, $f8, $f9[4]
77 and.ob $f10, $f8, 0x1e
84 max.ob $f10, $f8, $f9
[all …]
H A Dmdmx-ob-sb1.s26 ### SB-1 Non-accumulator .ob format ops.
37 pavg.ob $f10, $f8, $f9
43 pavg.ob $f10, $f8, $f9[6]
48 pavg.ob $f10, $f8, 0x10
55 pabsdiff.ob $f10, $f8, $f9
61 pabsdiff.ob $f10, $f8, $f9[7]
66 pabsdiff.ob $f10, $f8, 0x04
71 ### SB-1 Accumulator .ob format ops
83 pabsdiffc.ob $f8, $f9
90 pabsdiffc.ob $f8, $f9[7]
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dob.d12 module dmd.ob;
126 foreach (ob; preds) in print()
127 printf(" %d", ob.index); in print()
129 foreach (ob; succs) in print()
130 printf(" %d", ob.index); in print()
353 ObNode* nextNodeIs(ObNode* ob) in toObNodes()
355 obnodes.push(ob); in toObNodes()
356 curblock = ob; in toObNodes()
357 return ob; in toObNodes()
365 ObNode* gotoNextNodeIs(ObNode* ob) in toObNodes()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/
H A Dunwind-dw2-fde-darwin.c177 struct object *ob = NULL; in examine_objects() local
181 ob = calloc (1, sizeof (struct object)); in examine_objects()
182 dont_alloc |= ob == NULL; in examine_objects()
184 ob = &panicob; in examine_objects()
186 ob->pc_begin = (void *)-1; in examine_objects()
187 ob->tbase = 0; in examine_objects()
188 ob->dbase = 0; in examine_objects()
189 ob->u.single = (struct dwarf_fde *)real_fde; in examine_objects()
190 ob->s.i = 0; in examine_objects()
191 ob->s.b.encoding = DW_EH_PE_omit; in examine_objects()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/
H A Dunwind-dw2-fde-darwin.c177 struct object *ob = NULL; in examine_objects() local
181 ob = calloc (1, sizeof (struct object)); in examine_objects()
182 dont_alloc |= ob == NULL; in examine_objects()
184 ob = &panicob; in examine_objects()
186 ob->pc_begin = (void *)-1; in examine_objects()
187 ob->tbase = 0; in examine_objects()
188 ob->dbase = 0; in examine_objects()
189 ob->u.single = (struct dwarf_fde *)real_fde; in examine_objects()
190 ob->s.i = 0; in examine_objects()
191 ob->s.b.encoding = DW_EH_PE_omit; in examine_objects()
[all …]
/netbsd-src/external/bsd/pcc/dist/pcc/cc/cpp/
H A Dcpp.c352 putob(struct iobuf *ob, int ch) in putob() argument
354 if (ob->cptr == ob->bsz) { in putob()
355 int sz = ob->bsz - ob->buf; in putob()
356 ob->buf = xrealloc(ob->buf, sz + BUFSIZ); in putob()
357 ob->cptr = ob->buf + sz; in putob()
358 ob->bsz = ob->buf + sz + BUFSIZ; in putob()
361 *ob->cptr++ = ch; in putob()
641 struct iobuf *ob; in incfn() local
655 ob = strtobuf(sb, NULL); in incfn()
657 ob = getobuf(); in incfn()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Ddimport.c322 OutBuffer *ob = global.params.moduleDeps; in semantic() local
325 ob->writestring("depsImport "); in semantic()
326 ob->writestring(imod->toPrettyChars()); in semantic()
327 ob->writestring(" ("); in semantic()
328 escapePath(ob, imod->srcfile->toChars()); in semantic()
329 ob->writestring(") : "); in semantic()
333 protectionToBuffer(ob, protection); in semantic()
334 ob->writeByte(' '); in semantic()
337 stcToBuffer(ob, STCstatic); in semantic()
338 ob->writeByte(' '); in semantic()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Dcompress-debug.c58 ZSTD_outBuffer ob = { *next_out, *avail_out, 0 }; in compress_data() local
60 size_t ret = ZSTD_compressStream2 (ctx, &ob, &ib, ZSTD_e_continue); in compress_data()
63 *next_out += ob.pos; in compress_data()
64 *avail_out -= ob.pos; in compress_data()
67 return (int)ob.pos; in compress_data()
102 ZSTD_outBuffer ob = { *next_out, *avail_out, 0 }; in compress_finish() local
104 size_t ret = ZSTD_compressStream2 (ctx, &ob, &ib, ZSTD_e_end); in compress_finish()
105 *out_size = ob.pos; in compress_finish()
106 *next_out += ob.pos; in compress_finish()
107 *avail_out -= ob.pos; in compress_finish()
/netbsd-src/usr.sbin/sesd/srcs/
H A Dgetencstat.c52 ses_objstat ob; in main() local
131 ob.obj_id = objp[i].obj_id; in main()
132 if (ioctl(fd, SESIOC_GETOBJSTAT, (caddr_t) &ob) < 0) { in main()
137 if ((ob.cstat[0] & 0xf) == SES_OBJSTAT_OK) { in main()
141 ob.obj_id, in main()
144 ob.cstat)); in main()
149 ob.obj_id, geteltnm(objp[i].object_type), in main()
150 stat2ascii(objp[i].object_type, ob.cstat)); in main()

12345678