/src/lib/libc/arch/alpha/gen/ |
swapcontext.S | 40 NESTED(swapcontext, 2, FRAME_SIZE, ra, IM_RA|IM_A0|IM_A1, 0)
|
/src/lib/libc/arch/alpha/sys/ |
cerror.S | 39 NESTED(__cerror, 0, FRAME_SIZE, ra, IM_RA|IM_V0, 0)
|
/src/tests/lib/libc/sys/ |
t_fork.c | 332 #define NESTED(test, fn, flags) \ 338 "Test nested " #fn " in a child"); \ 347 NESTED(nested_fork, fork, 0) 348 NESTED(nested_vfork, vfork, 0) 349 NESTED(nested_clone, clone, 0) 350 NESTED(nested_clone_vm, clone, CLONE_VM) 351 NESTED(nested_clone_fs, clone, CLONE_FS) 352 NESTED(nested_clone_files, clone, CLONE_FILES) 353 //NESTED(nested_clone_sighand, clone, CLONE_SIGHAND) // XXX 354 NESTED(nested_clone_vfork, clone, CLONE_VFORK [all...] |
/src/sys/arch/mips/rmi/ |
rmixl_subr.S | 98 NESTED(rmixlfw_wakeup_cpu, CALLFRAME_SIZ+4*SZREG, ra) 131 NESTED(rmixl_cpu_trampoline, CALLFRAME_SIZ, ra)
|
/src/lib/libc/arch/mips/gen/ |
swapcontext.S | 41 NESTED(swapcontext, CALLFRAME_SIZ, ra)
|
/src/sys/arch/alpha/stand/common/ |
start.S | 92 NESTED(start, 1, ENTRY_FRAME, ra, 0, 0)
|
prom_disp.S | 57 NESTED(prom_dispatch, 5, DISPATCH_FRAME_SIZE, ra, DISPATCH_REGS, 0)
|
prom_swpal.S | 68 NESTED(switch_palcode, 0, PALSW_FRAME_SIZE, ra, PALSW_REGS, 0)
|
/src/sys/dev/arcbios/ |
arcbios_calls.S | 51 NESTED(arcbios_4orless_args, CALLFRAME_SIZ, ra) 76 NESTED(arcbios_5to8_args, CALLFRAME2_SIZ, ra) 135 NESTED(__CONCAT(arcbios_,name), 0, ra); \ 142 NESTED(__CONCAT(arcbios_,name), 0, ra); \
|
/src/sys/arch/mipsco/stand/common/ |
prom.S | 43 NESTED(prom_open, CALLFRAME_SIZ, ra)
|
/src/sys/arch/alpha/alpha/ |
prom_disp.s | 58 NESTED(prom_dispatch, 5, DISPATCH_FRAME_SIZE, ra, DISPATCH_REGS, 0)
|
locore.s | 260 LEAF(exception_return, 1) /* XXX should be NESTED */ 516 LEAF(XentUna, 3) /* XXX should be NESTED */ 984 NESTED(copyinstr, 4, 16, ra, IM_RA|IM_S0, 0) 1005 NESTED(copyoutstr, 4, 16, ra, IM_RA|IM_S0, 0) 1041 NESTED(kcopy, 3, 32, ra, IM_RA|IM_S0|IM_S1, 0) 1077 NESTED(copyin, 3, 16, ra, IM_RA|IM_S0, 0) 1103 NESTED(copyout, 3, 16, ra, IM_RA|IM_S0, 0) 1364 LEAF(XentRestart, 1) /* XXX should be NESTED */
|
/src/sys/arch/pmax/pmax/ |
locore_machdep.S | 168 NESTED(promcall, CALLFRAME_SIZ, ra) 192 NESTED(promcall, TF_SIZ, ra)
|
/src/sys/arch/mips/mips/ |
copy.S | 152 NESTED(kcopy, 2*CALLFRAME_SIZ, ra) 191 NESTED(copyin, CALLFRAME_SIZ, ra) 218 NESTED(copyout, CALLFRAME_SIZ, ra)
|
locore.S | 219 NESTED(cpu_switchto, CALLFRAME_SIZ, ra) 379 NESTED(softint_fast_dispatch, CALLFRAME_SIZ, ra) 685 NESTED(mips_fpu_intr, CALLFRAME_SIZ, ra) 867 NESTED(stacktrace, XCALLFRAME_SIZ, ra)
|
fp.S | 135 NESTED(mips_emul_fp, CALLFRAME_SIZ, ra)
|
/src/sys/arch/emips/stand/common/ |
start.S | 382 NESTED(PutWord,12,$31) 428 NESTED(Puts,8,$31)
|
/src/sys/arch/mips/include/ |
asm.h | 240 * No profilable local nested routine. 250 * No profilable nested routine. 257 * NESTED 261 #define NESTED(x, fsize, retpc) \ 267 * No profilable local nested routine. 275 * declare alternate entry point to nested routine. 367 #define NON_LEAF(x, fsize, retpc) NESTED(x, fsize, retpc)
|
/src/sys/arch/alpha/include/ |
asm.h | 162 * NESTED functions (functions that call other functions) should define 200 * "XLEAF"s must be nested within a "LEAF" and a ".end". 201 * Similar rules for nested routines, e.g. use NESTED/XNESTED 211 * closure of NESTED procedures as well). Assembly code can help 334 * NESTED 335 * Declare a (global) nested function 336 * A nested function calls other functions and needs 339 #define NESTED(_name_, _n_args_, _framesize_, _pc_reg_, _i_mask_, _f_mask_ ) \ 364 * Declare a local nested function [all...] |