Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for gpr (0.02 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go

    const (
    	SizeofSockaddrNFCLLCP = 0x60
    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Gpr       [32]uint64
    	Nip       uint64
    	Msr       uint64
    	Orig_gpr3 uint64
    	Ctr       uint64
    	Link      uint64
    	Xer       uint64
    	Ccr       uint64
    	Softe     uint64
    	Trap      uint64
    	Dar       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_CONTINUE             = 7  //Continue the process
    	PT_KILL                 = 8  //Terminate the process
    	PT_READ_GPR             = 11 // Read GPR, CR, PSW
    	PT_READ_FPR             = 12 // Read FPR
    	PT_READ_VR              = 13 // Read VR
    	PT_WRITE_GPR            = 14 // Write GPR, CR, PSW
    	PT_WRITE_FPR            = 15 // Write FPR
    	PT_WRITE_VR             = 16 // Write VR
    	PT_READ_BLOCK           = 17 // Read storage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go

    const (
    	SizeofSockaddrNFCLLCP = 0x58
    	SizeofIovec           = 0x8
    	SizeofMsghdr          = 0x1c
    	SizeofCmsghdr         = 0xc
    )
    
    const (
    	SizeofSockFprog = 0x8
    )
    
    type PtraceRegs struct {
    	Gpr       [32]uint32
    	Nip       uint32
    	Msr       uint32
    	Orig_gpr3 uint32
    	Ctr       uint32
    	Link      uint32
    	Xer       uint32
    	Ccr       uint32
    	Mq        uint32
    	Trap      uint32
    	Dar       uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go

    const (
    	SizeofSockaddrNFCLLCP = 0x60
    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Gpr       [32]uint64
    	Nip       uint64
    	Msr       uint64
    	Orig_gpr3 uint64
    	Ctr       uint64
    	Link      uint64
    	Xer       uint64
    	Ccr       uint64
    	Softe     uint64
    	Trap      uint64
    	Dar       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/s390x/a.out.go

    	AFNEG
    	AFNEGS
    	ALEDBR
    	ALDEBR
    	ALPDFR
    	ALNDFR
    	AFSUB
    	AFSUBS
    	AFSQRT
    	AFSQRTS
    	AFIEBR
    	AFIDBR
    	ACPSDR
    	ALTEBR
    	ALTDBR
    	ATCEB
    	ATCDB
    
    	// move from GPR to FPR and vice versa
    	ALDGR
    	ALGDR
    
    	// convert from int32/int64 to float/float64
    	ACEFBRA
    	ACDFBRA
    	ACEGBRA
    	ACDGBRA
    
    	// convert from float/float64 to int32/int64
    	ACFEBRA
    	ACFDBRA
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Fold initial carry bit if 0.
    (ADDE x y (Select1 <typ.UInt64> (ADDCconst (MOVDconst [0]) [-1]))) => (ADDC x y)
    // Fold transfer of CA -> GPR -> CA. Note 2 uses when feeding into a chained Add64carry.
    (Select1 (ADDCconst n:(ADDZEzero x) [-1])) && n.Uses <= 2 => x
    (ADDE (MOVDconst [0]) y c) => (ADDZE y c)
    
    // Borrowing subtraction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (FMOVDload [off] {sym} ptr1 (FMOVDstore [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => x
    (FMOVSload [off] {sym} ptr1 (FMOVSstore [off] {sym} ptr2 x _)) && isSamePtr(ptr1, ptr2) => x
    
    // prefer FPR <-> GPR moves over combined load ops
    (MULLDload <t> [off] {sym} x ptr1 (FMOVDstore [off] {sym} ptr2 y _)) && isSamePtr(ptr1, ptr2) => (MULLD x (LGDR <t> y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (MOVFload  [off] {sym} ptr (MOVWstore [off] {sym} ptr val _)) => (MOVWgpfp val)
    
    // Similarly for stores, if we see a store after FPR <=> GPR move, then redirect store to use the other register set.
    (MOVVstore [off] {sym} ptr (MOVVfpgp val) mem) => (MOVDstore [off] {sym} ptr val mem)
    (MOVDstore [off] {sym} ptr (MOVVgpfp val) mem) => (MOVVstore [off] {sym} ptr val mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  9. src/runtime/asm_ppc64x.s

    // like _savegpr0_14 or _restgpr1_14 to runtime.elf_savegpr0 or
    // runtime.elf_restgpr1 with an appropriate offset based on the number
    // register operations required when linking external objects which
    // make these calls. For GPR/FPR saves, the minimum register value is
    // 14, for VR it is 20.
    //
    // These are only used when linking such cgo code internally. Note, R12
    // and R0 may be used in different ways than regular ELF compliant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    			o1, o2 = pfxload(p.As, p.To.Reg, int16(r), PFX_R_ABS)
    			o1 |= uint32((v >> 16) & 0x3FFFF)
    			o2 |= uint32(v & 0xFFFF)
    		} else {
    			if o.a6 == C_REG {
    				// Reuse the base register when loading a GPR (C_REG) to avoid
    				// using REGTMP (R31) when possible.
    				o1 = AOP_IRR(OP_ADDIS, uint32(p.To.Reg), uint32(r), uint32(high16adjusted(v)))
    				o2 = AOP_IRR(c.opload(p.As), uint32(p.To.Reg), uint32(p.To.Reg), uint32(v))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top