Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for DUFFCOPY (0.15 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	REGSP   = REG_R1
    	REGSB   = REG_R2
    	REGRET  = REG_R3
    	REGARG  = -1      /* -1 disables passing the first argument in register */
    	REGRT1  = REG_R20 /* reserved for runtime, duffzero and duffcopy */
    	REGRT2  = REG_R21 /* reserved for runtime, duffcopy */
    	REGMIN  = REG_R7  /* register variables allocated from here to REGMAX */
    	REGCTXT = REG_R11 /* context for closures */
    	REGTLS  = REG_R13 /* C ABI TLS base pointer */
    	REGMAX  = REG_R27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/obj7.go

    				p.From.Reg = REGSP
    			}
    
    		case obj.ADUFFCOPY:
    			//  ADR	ret_addr, R27
    			//  STP	(FP, R27), -24(SP)
    			//  SUB	24, SP, FP
    			//  DUFFCOPY
    			// ret_addr:
    			//  SUB	8, SP, FP
    
    			q1 := p
    			// copy DUFFCOPY from q1 to q4
    			q4 := obj.Appendp(p, c.newprog)
    			q4.Pos = p.Pos
    			q4.As = obj.ADUFFCOPY
    			q4.To = p.To
    
    			q1.As = AADR
    			q1.From.Type = obj.TYPE_BRANCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    			},
    			typ:            "Mem",
    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in R21, changed as side effect)
    		// arg1 = address of src memory (in R20, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// returns mem
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS64Ops.go

    				clobbers: buildReg("R1 R31"),
    			},
    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in R2, changed as side effect)
    		// arg1 = address of src memory (in R1, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// returns mem
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:36:31 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    			faultOnNilArg0: true,
    		},
    
    		// duffcopy
    		// arg0 = address of dst memory (in X25, changed as side effect)
    		// arg1 = address of src memory (in X24, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// X1 (link register) changed because of function call
    		// returns mem
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    			argLength: 3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    // These are special functions which should not have a TOC regeneration
    // prologue.
    func isNOTOCfunc(name string) bool {
    	switch {
    	case name == "runtime.duffzero":
    		return true
    	case name == "runtime.duffcopy":
    		return true
    	case strings.HasPrefix(name, "runtime.elf_"):
    		return true
    	default:
    		return false
    	}
    }
    
    // Try converting FMOVD/FMOVS to XXSPLTIDP. If it is converted,
    // return true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/nilcheck.go

    						continue
    					}
    				case auxInt32:
    					// Mips uses this auxType for atomic add constant. It does not affect the effective address.
    				case auxInt64:
    					// ARM uses this auxType for duffcopy/duffzero/alignment info.
    					// It does not affect the effective address.
    				case auxNone:
    					// offset is zero.
    				default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    			},
    			faultOnNilArg0: true,
    		},
    
    		// duffcopy (must be 4-byte aligned)
    		// arg0 = address of dst memory (in R2, changed as side effect)
    		// arg1 = address of src memory (in R1, changed as side effect)
    		// arg2 = mem
    		// auxint = offset into duffcopy code to start executing
    		// returns mem
    		{
    			name:      "DUFFCOPY",
    			aux:       "Int64",
    			argLength: 3,
    			reg: regInfo{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/deadstore.go

    				stores = append(stores, v)
    				for _, a := range v.Args {
    					if a.Block == b && a.Type.IsMemory() {
    						storeUse.add(a.ID)
    						if v.Op != OpStore && v.Op != OpZero && v.Op != OpVarDef {
    							// CALL, DUFFCOPY, etc. are both
    							// reads and writes.
    							loadUse.add(a.ID)
    						}
    					}
    				}
    			} else {
    				if v.Op == OpLocalAddr {
    					if _, ok := localAddrs[v.Aux]; !ok {
    						localAddrs[v.Aux] = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    		as := &aSpace[i]
    		if as.lo <= a && int(a-as.lo) < len(as.names) {
    			return as.names[a-as.lo]
    		}
    	}
    	return fmt.Sprintf("A???%d", a)
    }
    
    var Anames = []string{
    	"XXX",
    	"CALL",
    	"DUFFCOPY",
    	"DUFFZERO",
    	"END",
    	"FUNCDATA",
    	"JMP",
    	"NOP",
    	"PCALIGN",
    	"PCALIGNMAX",
    	"PCDATA",
    	"RET",
    	"GETCALLERPC",
    	"TEXT",
    	"UNDEF",
    }
    
    func Bool2int(b bool) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top