Searched refs:fixP (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/cctools-845/as/
H A Dfixes.c43 struct fix *fixP; local
45 fixP = (struct fix *)obstack_alloc(&notes, sizeof(struct fix));
47 fixP->fx_frag = frag;
48 fixP->fx_where = where;
49 fixP->fx_size = size;
50 fixP->fx_addsy = add_symbol;
51 fixP->fx_subsy = sub_symbol;
52 fixP->fx_offset = offset;
53 fixP->fx_pcrel = pcrel;
54 fixP
[all...]
H A Dwrite_object.c121 struct fix *fixP);
123 struct fix *fixP,
156 struct fix *fixP; local
304 for(fixP = frchainP->frch_fix_root; fixP; fixP = fixP->fx_next){
305 frchainP->frch_section.nreloc += nrelocs_for_fix(fixP);
527 for(fixP = frchainP->frch_fix_root; fixP; fix
1035 nrelocs_for_fix( struct fix *fixP) argument
1104 fix_to_relocation_entries( struct fix *fixP, uint64_t sect_addr, struct relocation_info *riP, uint32_t debug_section) argument
[all...]
H A Dlayout.c75 extern int32_t md_pcrel_from_section(fixS * fixP);
80 fixS *fixP,
494 fixS *fixP,
517 for( ; fixP != NULL; fixP = fixP->fx_next){
518 fragP = fixP->fx_frag;
520 where = fixP->fx_where;
522 size = fixP->fx_size;
524 fixP
493 fixup_section( fixS *fixP, int nsect) argument
[all...]
H A Dmd.h128 * reguard to a possible relocation entry (the fixP->fx_r_type field in the fixS
129 * structure pointed to by fixP) for the section with the ordinal nsect. This
136 fixS *fixP,
166 const fixS *fixP);
H A Dsparc.c1144 md_number_to_imm(unsigned char *buf, signed_expr_t val, int size, fixS *fixP, int nsect) argument
1148 if ((fixP->fx_r_type == NO_RELOC) ||
1149 (fixP->fx_r_type == SPARC_RELOC_NONE) ||
1150 (fixP->fx_r_type == SPARC_RELOC_VANILLA)) {
1166 switch (fixP->fx_r_type) {
1192 if (!fixP->fx_addsy) {
1201 fixP->fx_addsy->sy_name);
1204 if (!fixP->fx_addsy) {
1213 fixP->fx_addsy->sy_name);
1217 as_bad ("bad or unhandled relocation type: 0x%02x", fixP
[all...]
H A Di386.c1433 tc_i386_fix_adjustable (fixP)
1434 fixS *fixP ATTRIBUTE_UNUSED;
1443 && (S_GET_SEGMENT (fixP->fx_addsy)->flags & SEC_MERGE) != 0
1444 && fixP->fx_pcrel)
1449 if (GOT_symbol && fixP->fx_subsy == GOT_symbol
1450 && fixP->fx_r_type == BFD_RELOC_32_PCREL)
1454 if (fixP->fx_r_type == BFD_RELOC_386_GOTOFF
1455 || fixP->fx_r_type == BFD_RELOC_386_PLT32
1456 || fixP->fx_r_type == BFD_RELOC_386_GOT32
1457 || fixP
3499 fixS *fixP; local
5219 fixS *fixP; local
5589 md_number_to_imm( unsigned char *con, signed_expr_t value, int nbytes, fixS *fixP, int nsect) argument
[all...]
H A Di860.c1029 fixS *fixP,
1038 fixP->fx_r_type == NO_RELOC ||
1039 fixP->fx_r_type == I860_RELOC_VANILLA)
1062 assert(fixP->fx_r_type < NO_RELOC && fixP->fx_r_type > I860_RELOC_VANILLA);
1075 switch (fixP->fx_r_type) {
1105 if ( fixP->fx_pcrel ) /* A 16 bit branch relative insn? */
1129 if ( fixP->fx_pcrel ) /* A 26 bit branch relative insn? */
1136 as_warn("bad relocation type: 0x%02x", fixP->fx_r_type);
1025 md_number_to_imm( unsigned char *buf, signed_expr_t val, int n, fixS *fixP, int nsect) argument
H A Darm.c16473 md_pcrel_from_section (fixS * fixP, segT seg)
16475 offsetT base = fixP->fx_where + fixP->fx_frag->fr_address;
16483 if (fixP->fx_pcrel
16484 && ((fixP->fx_addsy && S_GET_SEGMENT (fixP->fx_addsy) != seg)
16485 || (arm_force_relocation (fixP)
16487 && !S_IS_EXTERNAL (fixP->fx_addsy)
16493 switch (fixP->fx_r_type)
16533 if (fixP
16461 md_pcrel_from_section(fixS * fixP, segT seg) argument
16822 md_apply_fix(fixS * fixP, valueT * valP, segT seg) argument
18412 md_number_to_imm( unsigned char *buf, signed_expr_t val, int nbytes, fixS *fixP, int nsect) argument
[all...]
H A Dppc.c2249 * reguard to a possible relocation entry (the fixP->fx_r_type field in the fixS
2250 * structure pointed to by fixP) for the section with the ordinal nsect. This
2259 fixS *fixP,
2264 if(fixP->fx_r_type == NO_RELOC ||
2265 fixP->fx_r_type == PPC_RELOC_VANILLA){
2286 switch(fixP->fx_r_type){
2310 if(fixP->fx_pcrel)
2313 layout_file = fixP->file;
2314 layout_line = fixP->line;
2319 layout_file = fixP
2255 md_number_to_imm( unsigned char *buf, signed_expr_t val, int nbytes, fixS *fixP, int nsect) argument
[all...]
H A Dhppa.c1490 fixS *fixP,
1497 if(fixP->fx_r_type == NO_RELOC ||
1498 fixP->fx_r_type == HPPA_RELOC_VANILLA){
1516 calc_hppa_HILO(val - fixP->fx_offset, fixP->fx_offset,
1519 switch (fixP->fx_r_type) {
1544 if ( !fixP->fx_addsy ) {
1613 if ( !fixP->fx_addsy ) {
1629 as_bad("Undefined symbol %s", fixP->fx_addsy->sy_name);
1486 md_number_to_imm( unsigned char *buf, signed_expr_t val, int n, fixS *fixP, int nsect) argument
H A Dm88k.c1501 fixS *fixP,
1504 if(fixP->fx_r_type == NO_RELOC ||
1505 fixP->fx_r_type == M88K_RELOC_VANILLA) {
1522 switch (fixP->fx_r_type) {
1497 md_number_to_imm( unsigned char *buf, signed_expr_t val, int nbytes, fixS *fixP, int nsect) argument
H A Dread.c3363 fixS *fixP; local
3461 fixP = fix_new(frag_now,
3475 fixP->fx_sectdiff_divide_by_two = exp.X_sectdiff_divide_by_two;
H A Dm68k.c3176 fixS *fixP,
3171 md_number_to_imm( unsigned char *buf, signed_expr_t val, int n, fixS *fixP, int nsect) argument

Completed in 206 milliseconds