Searched refs:notes (Results 1 - 25 of 56) sorted by relevance

123

/haiku-buildtools/binutils/binutils/testsuite/binutils-all/
H A Dnote-1.d4 #name: add notes section
/haiku-buildtools/cloog/doc/
H A DTODO12 work-in-progress notes.
53 # ** III. Various notes **
/haiku-buildtools/gcc/contrib/
H A Dgennews3 # Script to generate the NEWS file from online release notes.
50 automatically from the online release notes. It covers releases of GCC
H A Dtest_summary38 -m: specify the e-mail address to send notes to. An appropriate default
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr58464.C64 _cpp_line_note *notes; member in struct:cpp_buffer
120 _cpp_line_note *note = &pfile->buffer->notes[pfile->buffer->cur_note];
/haiku-buildtools/gcc/gcc/
H A Dsel-sched-dump.c842 insn_t notes = BB_NOTE_LIST (bb);
844 if (notes != NULL_RTX)
848 /* For simplicity, we dump notes from note_list in reversed order
850 while (notes != NULL_RTX)
852 sel_dump_cfg_insn (notes, flags);
855 notes = PREV_INSN (notes);
838 insn_t notes = BB_NOTE_LIST (bb); local
/haiku-buildtools/binutils/bfd/
H A Delf64-ia64-vms.c1150 Elf_Internal_Note notes[NBR_NOTES]; local
1171 notes[0].type = NT_VMS_IMGNAM;
1172 notes[0].descdata = module_name;
1173 notes[0].descsz = module_name_len;
1176 notes[1].type = NT_VMS_GSTNAM;
1177 notes[1].descdata = module_name;
1178 notes[1].descsz = module_name_len;
1182 notes[2].type = NT_VMS_IMGID;
1183 notes[2].descdata = IMG_ID;
1184 notes[
[all...]
H A Delf32-v850.c2382 /* Allocate space for all known notes. */
2392 /* Provide default (= uninitilaised) values for all of the notes. */
2418 asection * notes = bfd_get_section_by_name (abfd, V850_NOTE_SECNAME);
2424 if (notes == NULL)
2425 notes = v850_elf_make_note_section (abfd);
2426 if (notes == NULL)
2429 v850_set_note (abfd, notes, note, val);
2461 /* Copy/overwrite notes from the input to the output. */
2580 /* FIXME: We should also check for conflicts between the notes
2671 asection * notes
2412 asection * notes = bfd_get_section_by_name (abfd, V850_NOTE_SECNAME); local
2665 asection * notes = bfd_get_section_by_name (abfd, V850_NOTE_SECNAME); local
[all...]
/haiku-buildtools/legacy/binutils/gas/
H A Dstabs.c205 happens to use the notes obstack. */
206 saved_string_obstack_end = notes.next_free;
344 if (saved_string_obstack_end == notes.next_free)
345 obstack_free (&notes, string);
H A Dsymbols.h22 extern struct obstack notes; /* eg FixS live here. */
H A Dsymbols.c61 struct obstack notes; variable in typeref:struct:obstack
111 obstack_grow (&notes, name, name_length);
112 ret = obstack_finish (&notes);
140 symbolP = (symbolS *) obstack_alloc (&notes, sizeof (symbolS));
202 ret = (struct local_symbol *) obstack_alloc (&notes, sizeof *ret);
576 newsymP = obstack_alloc (&notes, sizeof (*newsymP));
1781 symbol_decode = obstack_alloc (&notes, strlen (message_format) + 30);
H A Dread.c235 obstack_begin (&notes, chunksize);
4993 obstack_1grow (&notes, c);
4998 obstack_1grow (&notes, '\0');
4999 retval = obstack_finish (&notes);
5196 obstack_1grow (&notes, *input_line_pointer);
5201 obstack_1grow (&notes, '\0');
5202 filename = obstack_finish (&notes);
/haiku-buildtools/binutils/gas/
H A Dstabs.c207 happens to use the notes obstack. */
208 saved_string_obstack_end = notes.next_free;
346 if (saved_string_obstack_end == notes.next_free)
347 obstack_free (&notes, string);
H A Dsymbols.h21 extern struct obstack notes; /* eg FixS live here. */
H A Dsymbols.c62 struct obstack notes; variable in typeref:struct:obstack
111 obstack_grow (&notes, name, name_length);
112 ret = (char *) obstack_finish (&notes);
140 symbolP = (symbolS *) obstack_alloc (&notes, sizeof (symbolS));
201 ret = (struct local_symbol *) obstack_alloc (&notes, sizeof *ret);
574 newsymP = (symbolS *) obstack_alloc (&notes, sizeof (*newsymP));
1937 symbol_decode = (char *) obstack_alloc (&notes, strlen (message_format) + 30);
H A Dread.c263 obstack_begin (&notes, chunksize);
5779 obstack_1grow (&notes, c);
5784 obstack_1grow (&notes, '\0');
5785 retval = (char *) obstack_finish (&notes);
5986 obstack_1grow (&notes, *input_line_pointer);
5991 obstack_1grow (&notes, '\0');
5992 filename = (char *) obstack_finish (&notes);
/haiku-buildtools/legacy/gcc/gcc/
H A Dunroll.c267 of block_beg and block_end notes, because that would unbalance the block
295 "Unrolling failure: Unbalanced block notes.\n");
442 the inner loop. However, the loop notes are not removed from
1269 into NOTE_INSN_DELETED_LABEL notes. This in turn causes aborts in
1617 initial_reg_note_copy (notes, map)
1618 rtx notes;
1623 if (notes == 0)
1626 copy = rtx_alloc (GET_CODE (notes));
1627 PUT_MODE (copy, GET_MODE (notes));
1629 if (GET_CODE (notes)
[all...]
H A Dsched.c114 The information in the line number notes is carefully retained by
210 insn. For line-number notes, this indicates whether the note may be
219 /* List of important notes we must keep around. This is a pointer to the
235 /* The chain of REG_DEAD notes. REG_DEAD notes are removed from all insns
237 many REG_DEAD notes in the post scheduled code as there were in the
378 setters of the condition codes, so we must skip past notes here.
1309 /* There may be a note before this insn now, but all notes will
1976 /* ??? This code has no effect, because REG_DEAD notes are removed
2179 notes ma
3468 int notes = 0; local
4355 int notes = 0; local
[all...]
H A Dflow.c70 needed in subsequent insns. In that case, REG_DEAD notes will be
72 Partial REG_DEAD notes of this type do not occur when an insn sets
74 omitting REG_DEAD notes for objects stored in an insn is optional and
76 REG_DEAD notes.
78 REG_UNUSED notes are added for each register that is set by the insn
82 register is used in a subsequent insn, REG_UNUSED notes are made for
366 copies around basic block notes improperly. */
576 /* Keep a LIFO list of the currently active exception notes. */
582 /* Look for basic block notes with which to keep the
700 (which just don't have the REG_LABEL notes)
[all...]
/haiku-buildtools/gcc/gmp/mpn/m68k/
H A Dlshift.asm33 C SIZEOF_UNSIGNED (see ABI notes in mpn/m68k/README). The value is of
H A Drshift.asm33 C SIZEOF_UNSIGNED (see ABI notes in mpn/m68k/README). The value is of
/haiku-buildtools/gcc/libcpp/
H A Dlex.c89 buffer->notes = XRESIZEVEC (_cpp_line_note, buffer->notes,
93 buffer->notes[buffer->notes_used].pos = pos;
94 buffer->notes[buffer->notes_used].type = type;
990 /* Process the notes created by add_line_note as far as the current
999 _cpp_line_note *note = &buffer->notes[buffer->cur_note];
1515 _cpp_line_note *note = &pfile->buffer->notes[pfile->buffer->cur_note];
1595 /* ??/ followed by newline gets two line notes, one for
1750 note = &pfile->buffer->notes[pfile->buffer->cur_note];
2329 if (buffer->cur >= buffer->notes[buffe
[all...]
/haiku-buildtools/legacy/binutils/opcodes/
H A Dia64-gen.c200 int *chknotes; /* Dependency notes for each class. */
205 int *regnotes; /* Dependency notes for each class. */
241 /* A generic list of dependencies w/notes encoded. These may be shared. */
487 /* If it is a composite class, then ignore comments and notes that come after
511 /* If it's a composite class, leave the notes and comments in place so that
709 int *notes = *notesp;
762 notes = (int *)
763 xrealloc ((void *) notes,(count + 1) * sizeof (int));
764 notes[count] = note;
774 *notesp = notes;
707 int *notes = *notesp; local
[all...]
/haiku-buildtools/binutils/opcodes/
H A Dia64-gen.c200 int *chknotes; /* Dependency notes for each class. */
205 int *regnotes; /* Dependency notes for each class. */
241 /* A generic list of dependencies w/notes encoded. These may be shared. */
487 /* If it is a composite class, then ignore comments and notes that come after
511 /* If it's a composite class, leave the notes and comments in place so that
706 int *notes = *notesp;
759 notes = (int *)
760 xrealloc ((void *) notes,(count + 1) * sizeof (int));
761 notes[count] = note;
771 *notesp = notes;
704 int *notes = *notesp; local
[all...]
/haiku-buildtools/legacy/binutils/gas/config/
H A Dtc-i370.c1359 obstack_grow (&notes, name, name_length);
1360 preserved_copy_of_name = obstack_finish (&notes);

Completed in 506 milliseconds

123