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

1234

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-spu/
H A Dfixup.d2 #ld: --emit-fixups
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRFixupKinds.h17 /// The set of supported fixups.
133 namespace fixups { namespace in namespace:llvm::AVR
143 } // end of namespace fixups
/netbsd-current/external/gpl3/binutils.old/dist/gas/
H A Dcgen.c67 /* We need to keep a list of fixups. We can't simply generate them as
87 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; variable in typeref:struct:fixup
106 as_fatal (_("too many fixups"));
107 fixups[num_fixups].exp = *expP;
108 fixups[num_fixups].opindex = opindex;
109 fixups[num_fixups].opinfo = opinfo;
132 that gas_init_parse() performs for the current fixups.
135 element - element number of the array you wish to store the fixups
140 element - element number of the array you wish to restore the fixups
144 element - swap the current fixups wit
[all...]
H A Dcgen.h27 /* 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:__anon1532
70 output the insn and record any fixups. */
/netbsd-current/external/gpl3/binutils/dist/gas/
H A Dcgen.c67 /* We need to keep a list of fixups. We can't simply generate them as
87 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; variable in typeref:struct:fixup
106 as_fatal (_("too many fixups"));
107 fixups[num_fixups].exp = *expP;
108 fixups[num_fixups].opindex = opindex;
109 fixups[num_fixups].opinfo = opinfo;
132 that gas_init_parse() performs for the current fixups.
135 element - element number of the array you wish to store the fixups
140 element - element number of the array you wish to restore the fixups
144 element - swap the current fixups wit
[all...]
H A Dcgen.h27 /* 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:__anon242
70 output the insn and record any fixups. */
/netbsd-current/external/gpl3/gdb.old/dist/gas/
H A Dcgen.c67 /* We need to keep a list of fixups. We can't simply generate them as
87 static struct fixup fixups[GAS_CGEN_MAX_FIXUPS]; variable in typeref:struct:fixup
106 as_fatal (_("too many fixups"));
107 fixups[num_fixups].exp = *expP;
108 fixups[num_fixups].opindex = opindex;
109 fixups[num_fixups].opinfo = opinfo;
132 that gas_init_parse() performs for the current fixups.
135 element - element number of the array you wish to store the fixups
140 element - element number of the array you wish to restore the fixups
144 element - swap the current fixups wit
[all...]
H A Dcgen.h27 /* 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:__anon830
70 output the insn and record any fixups. */
/netbsd-current/external/gpl3/binutils.old/dist/gas/config/
H A Dtc-d10v.c63 static Fixups *fixups; variable
296 fixups = &FixUps[0];
549 if (fixups->fc >= MAX_INSN_FIXUPS)
550 as_fatal (_("too many fixups"));
555 fixups->fix[fixups->fc].reloc = BFD_RELOC_D10V_18;
567 fixups->fix[fixups->fc].reloc =
572 && (fixups->fix[fixups
[all...]
H A Dtc-v850.c158 struct v850_fixup fixups[MAX_INSN_FIXUPS];
2541 as_fatal (_("too many fixups"));
2543 fixups[fc].exp = ex;
2544 fixups[fc].opindex = *opindex_ptr;
2545 fixups[fc].reloc = reloc;
2612 as_fatal (_("too many fixups"));
2614 fixups[fc].exp = ex;
2615 fixups[fc].opindex = *opindex_ptr;
2616 fixups[fc].reloc = reloc;
2659 as_fatal (_("too many fixups"));
156 struct v850_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:v850_fixup
[all...]
H A Dtc-rl78.c68 } fixups[2]; member in struct:rl78_bytesT
110 rl78_bytes.fixups[rl78_bytes.n_fixups].exp = exp;
111 rl78_bytes.fixups[rl78_bytes.n_fixups].offset = offsetbits;
112 rl78_bytes.fixups[rl78_bytes.n_fixups].nbits = nbits;
113 rl78_bytes.fixups[rl78_bytes.n_fixups].type = type;
114 rl78_bytes.fixups[rl78_bytes.n_fixups].reloc = exp.X_md;
632 idx = rl78_bytes.fixups[i].offset / 8;
633 rel = reloc_map [rl78_bytes.fixups[i].nbits / 8][(int) rl78_bytes.fixups[i].type];
635 if (rl78_bytes.fixups[
[all...]
H A Dtc-d30v.c80 static Fixups *fixups; variable
319 fixups = &FixUps[0];
536 if (fixups->fc >= MAX_INSN_FIXUPS)
537 as_fatal (_("too many fixups"));
539 fixups->fix[fixups->fc].reloc =
541 fixups->fix[fixups->fc].size = 4;
542 fixups->fix[fixups
[all...]
H A Dtc-mn10300.c105 struct mn10300_fixup fixups[MAX_INSN_FIXUPS];
948 /* Set linkrelax here to avoid fixups in most sections. */
1755 as_fatal (_("too many fixups"));
1756 fixups[fc].exp = ex;
1757 fixups[fc].opindex = *opindex_ptr;
1758 fixups[fc].reloc = BFD_RELOC_UNUSED;
1759 if (mn10300_check_fixup (& fixups[fc]))
1918 opindex_converter.opindex = fixups[0].opindex;
1920 fixups[0].exp.X_add_symbol,
1921 fixups[
103 struct mn10300_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:mn10300_fixup
[all...]
H A Dtc-alpha.c99 struct alpha_fixup fixups[MAX_INSN_FIXUPS];
424 /* Linked list of .linkage fixups. */
1300 insn.fixups[0].reloc = BFD_RELOC_ALPHA_LITERAL;
1336 insn.fixups[0].reloc = BFD_RELOC_ALPHA_ELF_LITERAL;
1398 insn.fixups[insn.nfixups].reloc = BFD_RELOC_ALPHA_NOP;
1405 insn.fixups[insn.nfixups].exp.X_op = O_symbol;
1406 insn.fixups[insn.nfixups].exp.X_add_symbol = ensym;
1407 insn.fixups[insn.nfixups].exp.X_add_number = 0;
1408 insn.fixups[insn.nfixups].xtrasym = alpha_linkage_symbol;
1409 insn.fixups[ins
98 struct alpha_fixup fixups[MAX_INSN_FIXUPS]; member in struct:alpha_insn
[all...]
/netbsd-current/external/gpl3/binutils/dist/gas/config/
H A Dtc-d10v.c63 static Fixups *fixups; variable
296 fixups = &FixUps[0];
549 if (fixups->fc >= MAX_INSN_FIXUPS)
550 as_fatal (_("too many fixups"));
555 fixups->fix[fixups->fc].reloc = BFD_RELOC_D10V_18;
567 fixups->fix[fixups->fc].reloc =
572 && (fixups->fix[fixups
[all...]
H A Dtc-v850.c158 struct v850_fixup fixups[MAX_INSN_FIXUPS];
2538 as_fatal (_("too many fixups"));
2540 fixups[fc].exp = ex;
2541 fixups[fc].opindex = *opindex_ptr;
2542 fixups[fc].reloc = reloc;
2609 as_fatal (_("too many fixups"));
2611 fixups[fc].exp = ex;
2612 fixups[fc].opindex = *opindex_ptr;
2613 fixups[fc].reloc = reloc;
2656 as_fatal (_("too many fixups"));
156 struct v850_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:v850_fixup
[all...]
H A Dtc-rl78.c68 } fixups[2]; member in struct:rl78_bytesT
110 rl78_bytes.fixups[rl78_bytes.n_fixups].exp = exp;
111 rl78_bytes.fixups[rl78_bytes.n_fixups].offset = offsetbits;
112 rl78_bytes.fixups[rl78_bytes.n_fixups].nbits = nbits;
113 rl78_bytes.fixups[rl78_bytes.n_fixups].type = type;
114 rl78_bytes.fixups[rl78_bytes.n_fixups].reloc = exp.X_md;
632 idx = rl78_bytes.fixups[i].offset / 8;
633 rel = reloc_map [rl78_bytes.fixups[i].nbits / 8][(int) rl78_bytes.fixups[i].type];
635 if (rl78_bytes.fixups[
[all...]
H A Dtc-d30v.c77 static Fixups *fixups; variable
316 fixups = &FixUps[0];
533 if (fixups->fc >= MAX_INSN_FIXUPS)
534 as_fatal (_("too many fixups"));
536 fixups->fix[fixups->fc].reloc =
538 fixups->fix[fixups->fc].size = 4;
539 fixups->fix[fixups
[all...]
H A Dtc-mn10300.c105 struct mn10300_fixup fixups[MAX_INSN_FIXUPS];
948 /* Set linkrelax here to avoid fixups in most sections. */
1755 as_fatal (_("too many fixups"));
1756 fixups[fc].exp = ex;
1757 fixups[fc].opindex = *opindex_ptr;
1758 fixups[fc].reloc = BFD_RELOC_UNUSED;
1759 if (mn10300_check_fixup (& fixups[fc]))
1918 opindex_converter.opindex = fixups[0].opindex;
1920 fixups[0].exp.X_add_symbol,
1921 fixups[
103 struct mn10300_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:mn10300_fixup
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/config/
H A Dtc-d10v.c63 static Fixups *fixups; variable
296 fixups = &FixUps[0];
549 if (fixups->fc >= MAX_INSN_FIXUPS)
550 as_fatal (_("too many fixups"));
555 fixups->fix[fixups->fc].reloc = BFD_RELOC_D10V_18;
567 fixups->fix[fixups->fc].reloc =
572 && (fixups->fix[fixups
[all...]
H A Dtc-v850.c158 struct v850_fixup fixups[MAX_INSN_FIXUPS];
2541 as_fatal (_("too many fixups"));
2543 fixups[fc].exp = ex;
2544 fixups[fc].opindex = *opindex_ptr;
2545 fixups[fc].reloc = reloc;
2612 as_fatal (_("too many fixups"));
2614 fixups[fc].exp = ex;
2615 fixups[fc].opindex = *opindex_ptr;
2616 fixups[fc].reloc = reloc;
2659 as_fatal (_("too many fixups"));
156 struct v850_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:v850_fixup
[all...]
H A Dtc-rl78.c68 } fixups[2]; member in struct:rl78_bytesT
110 rl78_bytes.fixups[rl78_bytes.n_fixups].exp = exp;
111 rl78_bytes.fixups[rl78_bytes.n_fixups].offset = offsetbits;
112 rl78_bytes.fixups[rl78_bytes.n_fixups].nbits = nbits;
113 rl78_bytes.fixups[rl78_bytes.n_fixups].type = type;
114 rl78_bytes.fixups[rl78_bytes.n_fixups].reloc = exp.X_md;
632 idx = rl78_bytes.fixups[i].offset / 8;
633 rel = reloc_map [rl78_bytes.fixups[i].nbits / 8][(int) rl78_bytes.fixups[i].type];
635 if (rl78_bytes.fixups[
[all...]
H A Dtc-d30v.c80 static Fixups *fixups; variable
319 fixups = &FixUps[0];
536 if (fixups->fc >= MAX_INSN_FIXUPS)
537 as_fatal (_("too many fixups"));
539 fixups->fix[fixups->fc].reloc =
541 fixups->fix[fixups->fc].size = 4;
542 fixups->fix[fixups
[all...]
H A Dtc-mn10300.c105 struct mn10300_fixup fixups[MAX_INSN_FIXUPS];
948 /* Set linkrelax here to avoid fixups in most sections. */
1755 as_fatal (_("too many fixups"));
1756 fixups[fc].exp = ex;
1757 fixups[fc].opindex = *opindex_ptr;
1758 fixups[fc].reloc = BFD_RELOC_UNUSED;
1759 if (mn10300_check_fixup (& fixups[fc]))
1918 opindex_converter.opindex = fixups[0].opindex;
1920 fixups[0].exp.X_add_symbol,
1921 fixups[
103 struct mn10300_fixup fixups[MAX_INSN_FIXUPS]; variable in typeref:struct:mn10300_fixup
[all...]
/netbsd-current/sys/external/bsd/libfdt/dist/
H A Dfdt_overlay.c207 * @fixup_node: Node offset of the matching local fixups node
328 int fixups; local
330 fixups = fdt_path_offset(fdto, "/__local_fixups__");
331 if (fixups < 0) {
333 if (fixups == -FDT_ERR_NOTFOUND)
336 return fixups;
342 return overlay_update_local_node_references(fdto, 0, fixups,
415 * @property: Property offset in the overlay holding the list of fixups
516 /* We can have overlays without any fixups */

Completed in 206 milliseconds

1234