Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for ADDL (0.1 sec)

  1. src/cmd/cgo/internal/test/issue9400/asm_386.s

    //go:build gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT,$0-0
    	MOVL	$·Baton(SB), BX
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADDL	$(1024 * 8), SP
    
    	// Ask signaller to setgid
    	MOVL	$1, (BX)
    
    	// Wait for setgid completion
    loop:
    	PAUSE
    	MOVL	(BX), AX
    	CMPL	AX, $0
    	JNE	loop
    
    	// Restore stack
    	SUBL	$(1024 * 8), SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 575 bytes
    - Viewed (0)
  2. src/runtime/rt0_linux_386.s

    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_linux_lib(SB),NOSPLIT,$0
    	JMP	_rt0_386_lib(SB)
    
    TEXT main(SB),NOSPLIT,$0
    	// Remove the return address from the stack.
    	// rt0_go doesn't expect it to be there.
    	ADDL	$4, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 450 bytes
    - Viewed (0)
  3. src/runtime/rt0_freebsd_386.s

    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_freebsd_lib(SB),NOSPLIT,$0
    	JMP	_rt0_386_lib(SB)
    
    TEXT main(SB),NOSPLIT,$0
    	// Remove the return address from the stack.
    	// rt0_go doesn't expect it to be there.
    	ADDL	$4, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 454 bytes
    - Viewed (0)
  4. src/runtime/rt0_netbsd_386.s

    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_netbsd_lib(SB),NOSPLIT,$0
    	JMP	_rt0_386_lib(SB)
    
    TEXT main(SB),NOSPLIT,$0
    	// Remove the return address from the stack.
    	// rt0_go doesn't expect it to be there.
    	ADDL	$4, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 452 bytes
    - Viewed (0)
  5. src/runtime/rt0_openbsd_386.s

    	JMP	_rt0_386(SB)
    
    TEXT _rt0_386_openbsd_lib(SB),NOSPLIT,$0
    	JMP	_rt0_386_lib(SB)
    
    TEXT main(SB),NOSPLIT,$0
    	// Remove the return address from the stack.
    	// rt0_go doesn't expect it to be there.
    	ADDL	$4, SP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 454 bytes
    - Viewed (0)
  6. test/codegen/memops.go

    	// 386/sse2: `MOVSD\tX[0-9]+, 8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*[18]\)`
    	y[16*i+1] = t
    }
    
    func idxLoadPlusOp32(x []int32, i int) int32 {
    	s := x[0]
    	// 386: `ADDL\t4\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `ADDL\t4\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s += x[i+1]
    	// 386: `SUBL\t8\([A-Z]+\)\([A-Z]+\*4\), [A-Z]+`
    	// amd64: `SUBL\t8\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), [A-Z]+[0-9]*`
    	s -= x[i+2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. test/codegen/arithmetic.go

    	// amd64:`SUBQ\s[A-Z]+,\s24\([A-Z]+\)`
    	arr[3] -= b
    	// 386:`DECL\s16\([A-Z]+\)`
    	arr[4]--
    	// 386:`ADDL\s[$]-20,\s20\([A-Z]+\)`
    	arr[5] -= 20
    	// 386:`SUBL\s\([A-Z]+\)\([A-Z]+\*4\),\s[A-Z]+`
    	ef -= arr[b]
    	// 386:`SUBL\s[A-Z]+,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[c] -= b
    	// 386:`ADDL\s[$]-15,\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[d] -= 15
    	// 386:`DECL\s\([A-Z]+\)\([A-Z]+\*4\)`
    	arr[b]--
    	// amd64:`DECQ\s64\([A-Z]+\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. src/math/exp_amd64.s

    	MOVSD   exprodata<>+16(SB), X1
    	ADDSD   X0, X1
    	MULSD   X1, X0
    	MOVSD   exprodata<>+16(SB), X1
    	ADDSD   X0, X1
    	MULSD   X1, X0
    	ADDSD exprodata<>+8(SB), X0
    	// return fr * 2**exponent
    ldexp:
    	ADDL    $0x3FF, BX // add bias
    	JLE     denormal
    	CMPL    BX, $0x7FF
    	JGE     overflow
    lastStep:
    	SHLQ    $52, BX
    	MOVQ    BX, X1
    	MULSD   X1, X0
    	MOVSD   X0, ret+8(FP)
    	RET
    notFinite:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_386.s

    	RET
    
    // Called by OS using C ABI.
    TEXT runtime·thr_start(SB),NOSPLIT,$0
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	MOVL	4(SP), AX // m
    	MOVL	m_g0(AX), BX
    	LEAL	m_tls(AX), BP
    	MOVL	m_id(AX), DI
    	ADDL	$7, DI
    	PUSHAL
    	PUSHL	$32
    	PUSHL	BP
    	PUSHL	DI
    	CALL	runtime·setldt(SB)
    	POPL	AX
    	POPL	AX
    	POPL	AX
    	POPAL
    	get_tls(CX)
    	MOVL	BX, g(CX)
    
    	MOVL	AX, g_m(BX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

    add    eax, DWORD PTR 8[esp]
    ret    0
    _${methodName}    ENDP
    _TEXT   ENDS
    END
    """
            }else{
                return """
    .text
    .globl  _${methodName}
    _${methodName}:
    movl    8(%esp), %eax
    addl    4(%esp), %eax
    ret
    """
    
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top