Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 157 for Globl (0.18 sec)

  1. src/cmd/internal/obj/x86/pcrelative_test.go

    // license that can be found in the LICENSE file.
    
    package x86_test
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const asmData = `
    GLOBL zeros<>(SB),8,$64
    TEXT ·testASM(SB),4,$0
    VMOVUPS zeros<>(SB), %s // PC relative relocation is off by 1, for Y8-Y15, Z8-15 and Z24-Z31
    RET
    `
    
    const goData = `
    package main
    
    func testASM()
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_loong64.S

     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard lp64d ABI, where $r1, $r3, $r23-$r30, and $f24-$f31
     * are callee-save, so they must be saved explicitly, along with $r1 (LR).
     */
    .globl crosscall1
    crosscall1:
    	addi.d	$r3, $r3, -160
    	st.d	$r1, $r3, 0
    	st.d	$r23, $r3, 8
    	st.d	$r24, $r3, 16
    	st.d	$r25, $r3, 24
    	st.d	$r26, $r3, 32
    	st.d	$r27, $r3, 40
    	st.d	$r28, $r3, 48
    	st.d	$r29, $r3, 56
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 18:57:04 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. doc/asm.html

    </p>
    
    <p>
    The <code>GLOBL</code> directive declares a symbol to be global.
    The arguments are optional flags and the size of the data being declared as a global,
    which will have initial value all zeros unless a <code>DATA</code> directive
    has initialized it.
    The <code>GLOBL</code> directive must follow any corresponding <code>DATA</code> directives.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  4. src/crypto/aes/asm_arm64.s

    //go:build !purego
    
    #include "textflag.h"
    DATA rotInvSRows<>+0x00(SB)/8, $0x080f0205040b0e01
    DATA rotInvSRows<>+0x08(SB)/8, $0x00070a0d0c030609
    GLOBL rotInvSRows<>(SB), (NOPTR+RODATA), $16
    DATA invSRows<>+0x00(SB)/8, $0x0b0e0104070a0d00
    DATA invSRows<>+0x08(SB)/8, $0x0306090c0f020508
    GLOBL invSRows<>(SB), (NOPTR+RODATA), $16
    // func encryptBlockAsm(nr int, xk *uint32, dst, src *byte)
    TEXT ·encryptBlockAsm(SB),NOSPLIT,$0
    	MOVD	nr+0(FP), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/runtime/asm_386.s

    	MOVL	_rt0_386_lib_argc<>(SB), AX
    	MOVL	AX, 0(SP)
    	MOVL	_rt0_386_lib_argv<>(SB), AX
    	MOVL	AX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    DATA _rt0_386_lib_argc<>(SB)/4, $0
    GLOBL _rt0_386_lib_argc<>(SB),NOPTR, $4
    DATA _rt0_386_lib_argv<>(SB)/4, $0
    GLOBL _rt0_386_lib_argv<>(SB),NOPTR, $4
    
    TEXT runtime·rt0_go(SB),NOSPLIT|NOFRAME|TOPFRAME,$0
    	// Copy arguments forward on an even stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/math/exp_amd64.s

    DATA exprodata<>+40(SB)/8, $8.3333333333333333333e-3
    DATA exprodata<>+48(SB)/8, $1.3888888888888888889e-3
    DATA exprodata<>+56(SB)/8, $1.9841269841269841270e-4
    DATA exprodata<>+64(SB)/8, $2.4801587301587301587e-5
    GLOBL exprodata<>+0(SB), RODATA, $72
    
    // func Exp(x float64) float64
    TEXT ·archExp(SB),NOSPLIT,$0
    	// test bits for not-finite
    	MOVQ    x+0(FP), BX
    	MOVQ    $~(1<<63), AX // sign bit mask
    	MOVQ    BX, DX
    	ANDQ    AX, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. src/runtime/memclr_arm64.s

    	ADD	R4, R0, R0
    
    aligned:
    	SUB	R5, R1, R1
    
    loop_zva:
    	WORD	$0xd50b7420 // DC ZVA, R0
    	ADD	R5, R0, R0
    	SUBS	R5, R1, R1
    	BHS	loop_zva
    	ANDS	R6, R1, R1
    	BNE	tail_maybe_long
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/plist.go

    				// Write []uint32{2, 0}.
    				b := make([]byte, 8)
    				ctxt.Arch.ByteOrder.PutUint32(b, 2)
    				s := ctxt.GCLocalsSym(b)
    				if !s.OnList() {
    					ctxt.Globl(s, int64(len(s.P)), int(RODATA|DUPOK))
    				}
    				p.To.Sym = s
    			}
    
    		}
    
    		if curtext == nil {
    			etext = nil
    			continue
    		}
    		etext.Link = p
    		etext = p
    	}
    
    	if newprog == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. src/runtime/sys_freebsd_386.s

    	MOVL	0, AX			// crash (not reached)
    
    // Exit the entire program (like C exit)
    TEXT runtime·exit(SB),NOSPLIT,$-4
    	MOVL	$SYS_exit, AX
    	INT	$0x80
    	MOVL	$0xf1, 0xf1  // crash
    	RET
    
    GLOBL exitStack<>(SB),RODATA,$8
    DATA exitStack<>+0x00(SB)/4, $0
    DATA exitStack<>+0x04(SB)/4, $0
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVL	wait+0(FP), AX
    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. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    	OR     t4, t2, t2;  \
    	SRD    $2, t3;      \
    	ADDC   t2, h0, h0;  \
    	ADDE   t3, h1, h1;  \
    	ADDZE  h2
    
    DATA ·poly1305Mask<>+0x00(SB)/8, $0x0FFFFFFC0FFFFFFF
    DATA ·poly1305Mask<>+0x08(SB)/8, $0x0FFFFFFC0FFFFFFC
    GLOBL ·poly1305Mask<>(SB), RODATA, $16
    
    // func update(state *[7]uint64, msg []byte)
    TEXT ·update(SB), $0-32
    	MOVD state+0(FP), R3
    	MOVD msg_base+8(FP), R4
    	MOVD msg_len+16(FP), R5
    
    	MOVD 0(R3), R8   // h0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top