Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Dupok (0.07 sec)

  1. src/cmd/asm/internal/asm/testdata/loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    // TODO: cover more instruction
    
    TEXT foo(SB),DUPOK|NOSPLIT,$0
    	JAL	1(PC)	//CALL 1(PC)	//00040054
    	JAL	(R4)	//CALL (R4)	//8100004c
    	// relocation in play so the assembled offset should be 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 18:50:59 UTC 2023
    - 434 bytes
    - Viewed (0)
  2. src/cmd/link/internal/sym/library.go

    	Autolib     []goobj.ImportedPkg
    	Imports     []*Library
    	Main        bool
    	Units       []*CompilationUnit
    
    	Textp       []LoaderSym // text syms defined in this library
    	DupTextSyms []LoaderSym // dupok text syms defined in this library
    }
    
    func (l Library) String() string {
    	return l.Pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 18:32:23 UTC 2020
    - 651 bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/386enc.s

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// Instructions that were encoded with BYTE sequences.
    	// Included to simplify validation of CL that fixed that.
    	MOVQ (AX), M0  // 0f6f00
    	MOVQ M0, 8(SP) // 0f7f442408
    	MOVQ 8(SP), M0 // 0f6f442408
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. src/runtime/tls_ppc64x.s

    //
    // NOTE: _cgo_topofstack assumes this only clobbers g (R30), and R31.
    TEXT runtime·load_g(SB),NOSPLIT|NOFRAME,$0-0
    	MOVD	runtime·tls_g(SB), R31
    	MOVD	0(R31), g
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/s390x.s

    	VSUMB	V7, V8, V9              // e79780000064
    	VSUMH	V22, V23, V24           // e78670001e64
    
    	RET
    	RET	foo(SB)
    
    TEXT main·init(SB),DUPOK|NOSPLIT,$0 // TEXT main.init(SB), DUPOK|NOSPLIT, $0
    	RET
    
    TEXT main·main(SB),DUPOK|NOSPLIT,$0 // TEXT main.main(SB), DUPOK|NOSPLIT, $0
    	BL      main·foo(SB)    // CALL main.foo(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 03:55:32 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  6. src/runtime/textflag.h

    // Don't profile the marked routine. This flag is deprecated.
    #define NOPROF	1
    // It is ok for the linker to get multiple of these symbols. It will
    // pick one of the duplicates to use.
    #define DUPOK	2
    // Don't insert stack check preamble.
    #define NOSPLIT	4
    // Put this data in a read-only section.
    #define RODATA	8
    // This data contains no pointers.
    #define NOPTR	16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/textflag.go

    const (
    	// Don't profile the marked routine.
    	//
    	// Deprecated: Not implemented, do not use.
    	NOPROF = 1
    
    	// It is ok for the linker to get multiple of these symbols. It will
    	// pick one of the duplicates to use.
    	DUPOK = 2
    
    	// Don't insert stack check preamble.
    	NOSPLIT = 4
    
    	// Put this data in a read-only section.
    	RODATA = 8
    
    	// This data contains no pointers.
    	NOPTR = 16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticdata/data.go

    		symname = strconv.Quote(s)
    	}
    
    	symdata := base.Ctxt.Lookup(stringSymPrefix + symname)
    	if !symdata.OnList() {
    		off := dstringdata(symdata, 0, s, pos, "string")
    		objw.Global(symdata, int32(off), obj.DUPOK|obj.RODATA|obj.LOCAL)
    		symdata.Set(obj.AttrContentAddressable, true)
    	}
    
    	return symdata
    }
    
    // StringSymNoCommon is like StringSym, but produces a symbol that is not content-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/asan_ppc64le.s

    	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)
  10. src/cmd/asm/internal/asm/testdata/loong64enc2.s

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	MOVB	R4, R5			// 85e04000a5e04800
    	MOVWU	R4, R5			// 85804100a5804500
    	MOVW	$74565, R4		// 4402001484148d03
    	MOVW	$4097, R4		// 2400001484048003
    	MOVV	$74565, R4		// 4402001484148d03
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:11 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top