Searched refs:fixups (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/usr.bin/csup/
H A Dfixups.h34 struct fixups;
42 struct fixups *fixups_new(void);
43 void fixups_put(struct fixups *, struct coll *, const char *);
44 struct fixup *fixups_get(struct fixups *);
45 void fixups_close(struct fixups *);
46 void fixups_free(struct fixups *);
H A Dfixups.c34 #include "fixups.h"
39 * A synchronized queue to implement fixups. The updater thread adds
42 * done requesting fixups. The detailer thread gets the fixups with
48 struct fixups { struct
57 static void fixups_lock(struct fixups *);
58 static void fixups_unlock(struct fixups *);
64 fixups_lock(struct fixups *f)
73 fixups_unlock(struct fixups *f)
101 struct fixups *
[all...]
H A Dconfig.h101 struct fixups *fixups; member in struct:config
H A DMakefile10 fixups.c \
H A Dproto.c53 #include "fixups.h"
570 config->fixups = fixups_new();
633 fixups_free(config->fixups);
H A Ddetailer.c41 #include "fixups.h"
184 /* Now send fixups if needed. */
198 fixup = fixups_get(config->fixups);
H A Dupdater.c45 #include "fixups.h"
240 * Make sure to close the fixups even in case of an error,
243 fixups_close(up->config->fixups);
367 lprintf(1, "Applying fixups for collection %s/%s\n",
967 fixups_put(up->config->fixups, fup->coll, sr->sr_file);
/freebsd-10.0-release/contrib/binutils/gas/
H A Dcgen.c71 /* We need to keep a list of fixups. We can't simply generate them as
91 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; variable in typeref:struct:fixup
113 as_fatal (_("too many fixups"));
114 fixups[num_fixups].exp = *expP;
115 fixups[num_fixups].opindex = opindex;
116 fixups[num_fixups].opinfo = opinfo;
139 that gas_init_parse() performs for the current fixups.
142 element - element number of the array you wish to store the fixups
147 element - element number of the array you wish to restore the fixups
151 element - swap the current fixups wit
[all...]
H A Dcgen.h28 /* Maximum number of fixups in an insn.
40 /* Number of fixups this insn has. */
42 /* Array of fixups. */
43 fixS * fixups[GAS_CGEN_MAX_FIXUPS]; member in struct:__anon319
70 output the insn and record any fixups. */
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dtc-s390.c1150 /* We need to keep a list of fixups. We can't simply generate them as
1171 struct s390_fixup fixups[MAX_INSN_FIXUPS]; local
1231 as_fatal (_("too many fixups"));
1232 fixups[fc].exp = ex;
1233 fixups[fc].opindex = *opindex_ptr;
1234 fixups[fc].reloc = BFD_RELOC_UNUSED;
1331 as_fatal (_("too many fixups"));
1332 fixups[fc].exp = ex;
1333 fixups[fc].opindex = *opindex_ptr;
1334 fixups[f
[all...]
H A Dtc-alpha.c84 struct alpha_fixup fixups[MAX_INSN_FIXUPS];
1238 insn.fixups[0].reloc = BFD_RELOC_ALPHA_LITERAL;
1274 insn.fixups[0].reloc = BFD_RELOC_ALPHA_ELF_LITERAL;
1424 insn.fixups[0].reloc = BFD_RELOC_ALPHA_LITERAL;
1427 insn.fixups[0].reloc = BFD_RELOC_ALPHA_ELF_LITERAL;
1441 insn.fixups[insn.nfixups].reloc = DUMMY_RELOC_LITUSE_BASE;
1442 insn.fixups[insn.nfixups].exp.X_op = O_absent;
1616 /* Apply the fixups in order. */
1620 struct alpha_fixup *fixup = &insn->fixups[i];
1625 /* Some fixups ar
83 struct alpha_fixup fixups[MAX_INSN_FIXUPS]; member in struct:alpha_insn
[all...]
H A Dtc-arc.c313 /* We need to keep a list of fixups. We can't simply generate them as
1270 fixups we generated by the call to fix_new_exp, above. In the call
1490 struct arc_fixup fixups[MAX_FIXUPS];
1566 fixups[fix_up_at].opindex = arc_operand_map[operand->fmt];
1728 as_fatal ("too many fixups");
1729 fixups[fc].exp = exp;
1755 fixups[fc].opindex = arc_operand_map[(int) *syn];
1881 /* Create any fixups. */
1891 operand index. This lets us easily handle fixups for any
1899 if (arc_operands[fixups[
1483 struct arc_fixup fixups[MAX_FIXUPS]; local
[all...]
H A Dtc-ppc.c1924 fixups for word relocations in writable segments, so we can adjust
2152 /* We need to keep a list of fixups. We can't simply generate them as
2177 struct ppc_fixup fixups[MAX_INSN_FIXUPS];
2413 as_fatal (_("too many fixups"));
2415 fixups[fc].reloc = toc_reloc;
2416 fixups[fc].exp = ex;
2417 fixups[fc].opindex = *opindex_ptr;
2630 as_fatal (_("too many fixups"));
2631 fixups[fc].exp = ex;
2632 fixups[f
2166 struct ppc_fixup fixups[MAX_INSN_FIXUPS]; local
[all...]
H A Dtc-mep.c51 fixS * fixups [GAS_CGEN_MAX_FIXUPS]; member in struct:__anon352
61 their fixups so that we can parallelization grouping rules. */
463 /* Initialize the array we'll be using to store fixups. */
616 /* Move the insn and it's fixups to the second element of the
629 nop into element 0. Move the fixups in element 0 to
630 element 1 and save the current fixups to element 0.
631 Really there aren't any fixups at this point because we're
664 /* Now put the insn and fixups into the arrays. */
765 /* Move the insn and fixups to the second element of the
795 nop into element 0. Move the fixups i
[all...]
/freebsd-10.0-release/contrib/binutils/bfd/
H A Delf32-ppc.c5153 struct one_fixup *fixups = NULL;
5349 for (f = fixups; f ; f = f->next)
5392 f->next = fixups;
5396 fixups = f;
5449 changed = fixups != NULL;
5450 if (fixups != NULL)
5459 struct one_fixup *f = fixups;
5460 fixups = fixups->next;
5463 while (fixups);
5140 struct one_fixup *fixups = NULL; local
[all...]
H A Delfxx-ia64.c911 struct one_fixup *fixups = NULL;
1185 for (f = fixups; f ; f = f->next)
1249 f->next = fixups;
1253 fixups = f;
1316 /* ??? If we created fixups, this may push the code segment large
1322 while (fixups)
1324 struct one_fixup *f = fixups;
1325 fixups = fixups->next;
908 struct one_fixup *fixups = NULL; local

Completed in 360 milliseconds