Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dstLen (0.13 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = dstReg
    			p.To.Index = ppc64.REGZERO
    
    			p = s.Prog(ppc64.ASTXVD2X)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REG_VS33
    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = dstReg
    			p.To.Index = ppc64.REGTMP
    
    			// increment the dst reg for next iteration
    			p = s.Prog(ppc64.AADD)
    			p.Reg = dstReg
    			p.From.Type = obj.TYPE_CONST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    		importtab = append(importtab, ldimpf)
    	}
    
    	hdr.Lnimpid = int32(len(importtab))
    	hdr.Listlen = uint32(off - hdr.Limpoff)
    	hdr.Lstoff = off
    	hdr.Lstlen = stlen
    
    	/* Writing */
    	ctxt.Out.SeekSet(int64(globalOff))
    	binary.Write(ctxt.Out, ctxt.Arch.ByteOrder, hdr)
    
    	for _, s := range symtab {
    		binary.Write(ctxt.Out, ctxt.Arch.ByteOrder, s)
    
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    		}
    	} else {
    		// Emit move from src to dst.
    		_, srcReg := src.(*Register)
    		if srcReg {
    			if dstReg {
    				x = e.p.NewValue1(pos, OpCopy, c.Type, c)
    			} else {
    				x = e.p.NewValue1(pos, OpStoreReg, loc.(LocalSlot).Type, c)
    			}
    		} else {
    			if dstReg {
    				x = e.p.NewValue1(pos, OpLoadReg, c.Type, c)
    			} else {
    				// mem->mem. Use temp register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top