Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 755 for REGISTERS (0.09 sec)

  1. src/cmd/compile/internal/ssa/_gen/main.go

    }
    
    type regInfo struct {
    	// inputs[i] encodes the set of registers allowed for the i'th input.
    	// Inputs that don't use registers (flags, memory, etc.) should be 0.
    	inputs []regMask
    	// clobbers encodes the set of registers that are overwritten by
    	// the instruction (other than the output registers).
    	clobbers regMask
    	// outputs[i] encodes the set of registers allowed for the i'th output.
    	outputs []regMask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/syscall/asm_plan9_amd64.s

    	SYSCALL
    	CALL	runtime·exitsyscall(SB) // call via ABI wrapper, ensuring ABIInternal fixed registers are set
    	MOVQ	sysargs-160(SP), AX
    	MOVQ	AX, errbuf-168(SP)
    	CALL	runtime·gostring(SB)
    	LEAQ	str-160(SP), SI
    	JMP	copyresult3
    
    ok3:
    	CALL	runtime·exitsyscall(SB) // call via ABI wrapper, ensuring ABIInternal fixed registers are set
    	LEAQ	·emptystring(SB), SI
    
    copyresult3:
    	LEAQ	err+48(FP), DI
    
    	CLD
    	MOVSQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 01:29:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/cgo/abi_ppc64x.h

    // make space for all other callee-save registers.
    #define SAVE_ALL_REG_SIZE (SAVE_GPR_SIZE+SAVE_FPR_SIZE+SAVE_VR_SIZE)
    
    // Stack a frame and save all callee-save registers following the
    // host OS's ABI. Fortunately, this is identical for AIX, ELFv1, and
    // ELFv2. All host ABIs require the stack pointer to maintain 16 byte
    // alignment, and save the callee-save registers in the same places.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. pkg/proxy/apis/config/register.go

    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes registers known types to the given scheme
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&KubeProxyConfiguration{},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 06 10:42:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  5. test/abi/s_sif_sif.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Test ensures that abi information producer and consumer agree about the
    // order of registers for inputs.  T's registers should be I0, F0, I1, F1.
    
    import "fmt"
    
    type P struct {
    	a int8
    	x float64
    }
    
    type T struct {
    	d, e P
    }
    
    //go:registerparams
    //go:noinline
    func G(t T) float64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 651 bytes
    - Viewed (0)
  6. src/runtime/export_debug_arm64_test.go

    	ctxt.set_pc(ctxt.pc() + 4)
    }
    
    // case 16
    func (h *debugCallHandler) restoreSigContext(ctxt *sigctxt) {
    	// Restore all registers except for pc and sp
    	pc, sp := ctxt.pc(), ctxt.sp()
    	*ctxt.regs() = h.sigCtxt.savedRegs
    	ctxt.set_pc(pc + 4)
    	ctxt.set_sp(sp)
    }
    
    // storeRegArgs sets up argument registers in the signal
    // context state from an abi.RegArgs.
    //
    // Both src and dst must be non-nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	RIP // 64-bit
    
    	// 387 floating point registers.
    	F0
    	F1
    	F2
    	F3
    	F4
    	F5
    	F6
    	F7
    
    	// MMX registers.
    	M0
    	M1
    	M2
    	M3
    	M4
    	M5
    	M6
    	M7
    
    	// XMM registers.
    	X0
    	X1
    	X2
    	X3
    	X4
    	X5
    	X6
    	X7
    	X8
    	X9
    	X10
    	X11
    	X12
    	X13
    	X14
    	X15
    
    	// Segment registers.
    	ES
    	CS
    	SS
    	DS
    	FS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. pkg/controller/apis/config/register.go

    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is a global function that registers this API group & version to a scheme
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // addKnownTypes registers known types to the given scheme
    func addKnownTypes(scheme *runtime.Scheme) error {
    	scheme.AddKnownTypes(SchemeGroupVersion,
    		&KubeControllerManagerConfiguration{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 06 10:42:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/runtime/export_debug_test.go

    	"internal/stringslite"
    	"unsafe"
    )
    
    // InjectDebugCall injects a debugger call to fn into g. regArgs must
    // contain any arguments to fn that are passed in registers, according
    // to the internal Go ABI. It may be nil if no arguments are passed in
    // registers to fn. args must be a pointer to a valid call frame (including
    // arguments and return space) for fn, or nil. tkill must be a function that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/runtime/rt0_darwin_arm64.s

    //
    // Note that all currently shipping darwin/arm64 platforms require
    // cgo and do not support c-shared.
    TEXT _rt0_arm64_darwin_lib(SB),NOSPLIT,$152
    	// Preserve callee-save registers.
    	SAVE_R19_TO_R28(8)
    	SAVE_F8_TO_F15(88)
    
    	MOVD  R0, _rt0_arm64_darwin_lib_argc<>(SB)
    	MOVD  R1, _rt0_arm64_darwin_lib_argv<>(SB)
    
    	MOVD	$0, g // initialize g to nil
    
    	// Synchronous initialization.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top