Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 157 for Globl (0.04 sec)

  1. src/cmd/internal/notsha256/sha256block_amd64.s

    DATA flip_mask<>+0x18(SB)/8, $0x0c0d0e0f08090a0b
    GLOBL flip_mask<>(SB), 8, $32
    
    // shuffle xBxA -> 00BA
    DATA shuff_00BA<>+0x00(SB)/8, $0x0b0a090803020100
    DATA shuff_00BA<>+0x08(SB)/8, $0xFFFFFFFFFFFFFFFF
    DATA shuff_00BA<>+0x10(SB)/8, $0x0b0a090803020100
    DATA shuff_00BA<>+0x18(SB)/8, $0xFFFFFFFFFFFFFFFF
    GLOBL shuff_00BA<>(SB), 8, $32
    
    // shuffle xDxC -> DC00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateAssemblerBaseNamesTestApp.groovy

    _TEXT     SEGMENT
    _${methodName}    PROC
    mov    eax, DWORD PTR 4[esp]
    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)
  3. src/runtime/asm_ppc64x.h

    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    	DATA	funcname+0(SB)/8, $localfuncname(SB) 	\
    	DATA	funcname+8(SB)/8, $TOC(SB)		\
    	DATA	funcname+16(SB)/8, $0			\
    	GLOBL	funcname(SB), NOPTR, $24
    #endif
    #endif
    
    // linux/ppc64 uses ELFv1 which uses function descriptors.
    // These must also look like ABI0 functions on linux/ppc64
    // to work with abi.FuncPCABI0(sigtramp) in os_linux.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    			p.errorf("bad addr size for DATA argument: %d", sz)
    		}
    	}
    }
    
    // asmGlobl assembles a GLOBL pseudo-op.
    // GLOBL shifts<>(SB),8,$256
    // GLOBL shifts<>(SB),$256
    func (p *Parser) asmGlobl(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for GLOBL")
    		return
    	}
    
    	// Operand 0 has the general form foo<>+0x04(SB).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_amd64.s

    	MOVL $0, AX
    	MOVQ AX, X15 // must be 0 on return
    
    	RET
    
    // rotate left 16 indexes for PSHUFB
    GLOBL ·rol16<>(SB), NOPTR|RODATA, $16
    DATA ·rol16<>+0(SB)/8, $0x0504070601000302
    DATA ·rol16<>+8(SB)/8, $0x0D0C0F0E09080B0A
    
    // rotate left 8 indexes for PSHUFB
    GLOBL ·rol8<>(SB), NOPTR|RODATA, $16
    DATA ·rol8<>+0(SB)/8, $0x0605040702010003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_linux_ppc64x.S

     *
     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard ppc64 C ABI, where r2, r14-r31, f14-f31 are
     * callee-save, so they must be saved explicitly.
     */
    .globl crosscall_ppc64
    crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	%r0
    	std	%r0, 16(%r1)	// Save LR in caller's frame
    	mfcr	%r0
    	std	%r0, 8(%r1)	// Save CR in caller's frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/hash/crc32/crc32_s390x.s

    DATA    ·crclecons+64(SB)/8, $0x0000000000000000
    DATA    ·crclecons+72(SB)/8, $0x00000001F7011641       // u'
    DATA    ·crclecons+80(SB)/8, $0x0000000000000000
    DATA    ·crclecons+88(SB)/8, $0x00000001DB710641       // P'(x) << 1
    
    GLOBL    ·crclecons(SB),RODATA, $144
    
    // Castagonli Polynomial constants
    DATA    ·crcclecons+0(SB)/8,  $0x0F0E0D0C0B0A0908      // LE-to-BE mask
    DATA    ·crcclecons+8(SB)/8,  $0x0706050403020100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageIntegrationTest.groovy

    model {
        components {
            main(NativeExecutableSpec)
        }
    }
            """
    
            and:
            file("src/main/asm/broken.s") << """
    .section    __TEXT,__text,regular,pure_instructions
    .globl  _sum
    .align  4, 0x90
    _sum:
    pushl
    """
    
            expect:
            fails "mainExecutable"
            failure.assertHasDescription("Execution failed for task ':assembleMainExecutableMainAsm'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateMixedSameBaseNamesTestApp.groovy

    sayFooFromAsm proc
    push    offset msg
    call    printf
    mov eax,0
    push eax
    call exit
    sayFooFromAsm endp
    end
    """
            } else {
                return """
    .text
    
    LC0:
    .ascii "fooFromAsm\\12\\0"
    .globl _sayFooFromAsm
    
    _sayFooFromAsm:
            pushl   %ebp
            movl    %esp, %ebp
            subl    \$8, %esp
            andl    \$-16, %esp
            movl    \$0, %eax
            movl    %eax, -4(%ebp)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/runtime/asan_ppc64le.s

    	BL	(CTR)
    	MOVD	$0, R0			// C code can clobber R0 set it back to 0
    	MOVD	R16, R1			// restore R1;
    	MOVD	runtime·tls_g(SB), R10	// find correct g
    	MOVD	0(R10), g
    	RET
    
    // tls_g, g value for each thread in TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 18:13:33 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top