Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PUSHL (0.03 sec)

  1. src/runtime/asm_386.s

    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed on the stack following the
    // usual C ABI.
    TEXT _rt0_386_lib(SB),NOSPLIT,$0
    	PUSHL	BP
    	MOVL	SP, BP
    	PUSHL	BX
    	PUSHL	SI
    	PUSHL	DI
    
    	MOVL	8(BP), AX
    	MOVL	AX, _rt0_386_lib_argc<>(SB)
    	MOVL	12(BP), AX
    	MOVL	AX, _rt0_386_lib_argv<>(SB)
    
    	// Synchronous initialization.
    	CALL	runtimeĀ·libpreinit(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	R_386_TLS_GD_PUSH   R_386 = 25 /* pushl instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_CALL   R_386 = 26 /* call instruction for Sun ABI GD sequence */
    	R_386_TLS_GD_POP    R_386 = 27 /* popl instruction for Sun ABI GD sequence */
    	R_386_TLS_LDM_32    R_386 = 28 /* 32 bit offset to GOT (index,zero) pair */
    	R_386_TLS_LDM_PUSH  R_386 = 29 /* pushl instruction for Sun ABI LD sequence */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top