HomeSort by: relevance | last modified time | path
    Searched refs:fixup (Results 1 - 25 of 98) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gdb/dist/gdb/
glibc-tdep.c 41 entry points to "_dl_runtime_resolve", which calls "fixup" to
44 We look for the symbol `_dl_runtime_resolve', and find `fixup' in
45 the same objfile. If we are at the entry point of `fixup', then
61 bound_minimal_symbol fixup local
66 if (! fixup.minsym)
67 fixup = lookup_minimal_symbol (current_program_space, "fixup",
70 if (fixup.minsym && fixup.value_address () == pc)
  /src/external/gpl3/gdb.old/dist/gdb/
glibc-tdep.c 41 entry points to "_dl_runtime_resolve", which calls "fixup" to
44 We look for the symbol `_dl_runtime_resolve', and find `fixup' in
45 the same objfile. If we are at the entry point of `fixup', then
61 struct bound_minimal_symbol fixup local
65 if (! fixup.minsym)
66 fixup = lookup_minimal_symbol ("fixup", NULL, resolver.objfile);
68 if (fixup.minsym && fixup.value_address () == pc)
  /src/regress/sys/arch/arm/
Makefile 5 SUBDIR+= abort-fixup
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/io/
protocols.h 39 # error arch fixup needed here
  /src/external/gpl3/gcc/dist/libgcc/config/pa/
fptr.c 36 The first "bl" branch instruction found MUST be a call to fixup. See
81 fixup_t fixup; local
119 call to _dl_fixup or a magic branch to fixup at the beginning of the
120 trampoline template. The fixup function does the actual runtime
141 fixup_plabel[0] = (unsigned int) iptr + 8; /* address of fixup */
142 fixup_plabel[1] = got[-1]; /* ltp for fixup */
143 fixup = (fixup_t) ((int) fixup_plabel | 2);
145 /* Call fixup to resolve the function address. got[1] contains the
147 fixup ((struct link_map *) got[1], reloc_offset);
  /src/external/gpl3/gcc.old/dist/libgcc/config/pa/
fptr.c 36 The first "bl" branch instruction found MUST be a call to fixup. See
81 fixup_t fixup; local
119 call to _dl_fixup or a magic branch to fixup at the beginning of the
120 trampoline template. The fixup function does the actual runtime
141 fixup_plabel[0] = (unsigned int) iptr + 8; /* address of fixup */
142 fixup_plabel[1] = got[-1]; /* ltp for fixup */
143 fixup = (fixup_t) ((int) fixup_plabel | 2);
145 /* Call fixup to resolve the function address. got[1] contains the
147 fixup ((struct link_map *) got[1], reloc_offset);
  /src/sys/arch/powerpc/powerpc/
fixup.c 1 /* $NetBSD: fixup.c,v 1.13 2022/01/01 01:15:11 macallan Exp $ */
38 __KERNEL_RCSID(0, "$NetBSD: fixup.c,v 1.13 2022/01/01 01:15:11 macallan Exp $");
97 struct powerpc_jump_fixup_info fixup; local
109 fixup.jfi_stub = fixup_addr2offset(stub);
110 fixup.jfi_real = 0;
121 for (; stub < stub_end && fixup.jfi_real == 0; stub++) {
209 fixup.jfi_real = fixup_addr2offset(ctr);
223 KASSERT(fixup.jfi_real != 0);
230 __func__, insnp, fixup.jfi_stub << 2, fixup.jfi_real << 2)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/arch/
arm-get-next-pcs.h 38 CORE_ADDR (*fixup) (struct arm_get_next_pcs *self, CORE_ADDR pc); member in struct:arm_get_next_pcs_ops
  /src/external/gpl3/gdb.old/dist/gdb/arch/
arm-get-next-pcs.h 38 CORE_ADDR (*fixup) (struct arm_get_next_pcs *self, CORE_ADDR pc); member in struct:arm_get_next_pcs_ops
  /src/sys/arch/sparc/sparc/
timer.c 120 u_int cnt, res, fixup, offset; local
148 fixup = cntr.limit;
150 fixup = cntr.limit;
152 fixup = 0;
161 res += fixup + offset;
  /src/lib/libm/src/
s_remquof.c 52 goto fixup; /* |x|<|y| return x or x-y */
109 fixup:
s_remquo.c 56 goto fixup; /* |x|<|y| return x or x-y */
143 fixup:
s_remquol.c 105 goto fixup; /* |x|<|y| return x or x-y */
165 fixup:
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_srtm.c 223 SRTM_ITEM *cur = head, **fixup = new_head; local
228 fixup = &cur->next_by_seq_num;
232 item->next_by_seq_num = *fixup;
233 *fixup = item;
244 SRTM_ITEM *cur = head, **fixup = new_head; local
249 fixup = &cur->next_by_srt_blinded;
253 item->next_by_srt_blinded = *fixup;
254 *fixup = item;
quic_ackm.c 678 OSSL_ACKM_TX_PKT *acked_pkts = NULL, **fixup = &acked_pkts, *pkt, *pprev; local
721 *fixup = pkt;
722 fixup = &pkt->anext;
723 *fixup = NULL;
754 OSSL_ACKM_TX_PKT *lost_pkts = NULL, **fixup = &lost_pkts, *pkt, *pnext; local
800 *fixup = pkt;
801 fixup = &pkt->lnext;
802 *fixup = NULL;
  /src/external/gpl3/binutils/dist/gas/config/
tc-pru.c 100 which is passed to fix_new_exp () to generate a fixup. */
553 /* Check a fixup for overflow. */
555 pru_check_overflow (valueT fixup, reloc_howto_type *howto)
563 fixup);
568 /* Emit diagnostic for fixup overflow. */
570 pru_diagnose_overflow (valueT fixup, reloc_howto_type *howto,
579 (unsigned int) fixup,
580 (unsigned int) (~(~(valueT) 0 << howto->bitsize) & fixup));
601 address = fixup | range_min;
610 (int)fixup, -((1<<9) * 4), (1 << 9) * 4)
789 valueT fixup = value; local
    [all...]
tc-mn10300.c 522 /* Create a fixup for the reversed conditional branch. */
528 /* Now create the unconditional branch + fixup to the
579 /* Create a fixup for the reversed conditional branch. */
585 /* Now create the unconditional branch + fixup to the
625 /* Create a fixup for the reversed conditional branch. */
631 /* Now create the unconditional branch + fixup to the
661 /* Create a fixup for the reversed conditional branch. */
667 /* Now create the unconditional branch + fixup to the
815 /* Create a fixup for the reversed conditional branch. */
821 /* Now create the unconditional branch + fixup to th
1018 struct mn10300_fixup fixup; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-pru.c 100 which is passed to fix_new_exp () to generate a fixup. */
553 /* Check a fixup for overflow. */
555 pru_check_overflow (valueT fixup, reloc_howto_type *howto)
563 fixup);
568 /* Emit diagnostic for fixup overflow. */
570 pru_diagnose_overflow (valueT fixup, reloc_howto_type *howto,
579 (unsigned int) fixup,
580 (unsigned int) (~(~(valueT) 0 << howto->bitsize) & fixup));
601 address = fixup | range_min;
610 (int)fixup, -((1<<9) * 4), (1 << 9) * 4)
789 valueT fixup = value; local
    [all...]
tc-mn10300.c 522 /* Create a fixup for the reversed conditional branch. */
528 /* Now create the unconditional branch + fixup to the
579 /* Create a fixup for the reversed conditional branch. */
585 /* Now create the unconditional branch + fixup to the
625 /* Create a fixup for the reversed conditional branch. */
631 /* Now create the unconditional branch + fixup to the
661 /* Create a fixup for the reversed conditional branch. */
667 /* Now create the unconditional branch + fixup to the
815 /* Create a fixup for the reversed conditional branch. */
821 /* Now create the unconditional branch + fixup to th
1018 struct mn10300_fixup fixup; local
    [all...]
  /src/sys/dev/isa/
boca.c 67 callout_t fixup; member in struct:boca_softc
191 callout_init(&sc->fixup, 0);
192 callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
245 callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRAsmBackend.cpp 38 std::string Description, const MCFixup &Fixup,
50 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic);
58 std::string Description, const MCFixup &Fixup,
69 Ctx->reportFatalError(Fixup.getLoc(), Diagnostic);
76 /// Adjusts the value of a branch target before fixup application.
77 static void adjustBranch(unsigned Size, const MCFixup &Fixup, uint64_t &Value,
81 unsigned_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx);
87 /// Adjusts the value of a relative branch target before fixup application.
88 static void adjustRelativeBranch(unsigned Size, const MCFixup &Fixup,
92 signed_width(Size + 1, Value, std::string("branch target"), Fixup, Ctx)
202 static void fixup(unsigned Size, const MCFixup &Fixup, uint64_t &Value, function in namespace:adjust::ldi
    [all...]
  /src/tests/fs/puffs/
t_fuzz.c 151 fixup(int nfix, struct puffs_kargs *kargs) function
232 fixup(nfix, &kargs);
  /src/crypto/external/apache2/openssl/lib/libcrypto/arch/vax/
bn_asm_vax.S 28 # fixup for "negative" r[]
37 # combined fixup for "negative" w, a[]
81 # fixup for "negative" carry
86 1: # combined fixup for "negative" w, a[]
130 # fixup for "negative" a[]
  /src/crypto/external/bsd/openssl/lib/libcrypto/arch/vax/
bn_asm_vax.S 28 # fixup for "negative" r[]
37 # combined fixup for "negative" w, a[]
81 # fixup for "negative" carry
86 1: # combined fixup for "negative" w, a[]
130 # fixup for "negative" a[]
  /src/crypto/external/bsd/openssl.old/lib/libcrypto/arch/vax/
bn_asm_vax.S 28 # fixup for "negative" r[]
37 # combined fixup for "negative" w, a[]
81 # fixup for "negative" carry
86 1: # combined fixup for "negative" w, a[]
130 # fixup for "negative" a[]

Completed in 50 milliseconds

1 2 3 4