Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for kldsym (0.17 sec)

  1. src/cmd/internal/obj/loong64/asm.go

    // Each function gets a fresh ctxt0.
    // This allows for multiple functions to be safely concurrently assembled.
    type ctxt0 struct {
    	ctxt       *obj.Link
    	newprog    obj.ProgAlloc
    	cursym     *obj.LSym
    	autosize   int32
    	instoffset int64
    	pc         int64
    }
    
    // Instruction layout.
    
    const (
    	FuncAlign = 4
    	loopAlign = 16
    )
    
    type Optab struct {
    	as    obj.As
    	from1 uint8
    	reg   uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    }
    
    func (p *GCProg) End(size int64) {
    	p.w.ZeroUntil(size / int64(p.ctxt.Arch.PtrSize))
    	p.w.End()
    	if debugGCProg {
    		fmt.Fprintf(os.Stderr, "ld: end GCProg\n")
    	}
    }
    
    func (p *GCProg) AddSym(s loader.Sym) {
    	ldr := p.ctxt.loader
    	typ := ldr.SymGoType(s)
    
    	// Things without pointers should be in sym.SNOPTRDATA or sym.SNOPTRBSS;
    	// everything we see should have pointers and should therefore have a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    				p := s.Prog(ppc64.AMOVD)
    				p.From.Type = obj.TYPE_ADDR
    				p.From.Reg = v.Args[0].Reg()
    				p.From.Offset = v.AuxInt
    				p.To.Type = obj.TYPE_REG
    				p.To.Reg = v.Reg()
    			}
    
    		case *obj.LSym, ir.Node:
    			p := s.Prog(ppc64.AMOVD)
    			p.From.Type = obj.TYPE_ADDR
    			p.From.Reg = v.Args[0].Reg()
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = v.Reg()
    			ssagen.AddAux(&p.From, v)
    
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	=> (Move {types.Types[types.TUINT8]} [int64(sz)] dst src mem)
    
    // De-virtualize late-expanded interface calls into late-expanded static calls.
    (InterLECall [argsize] {auxCall} (Addr {fn} (SB)) ___) => devirtLECall(v, fn.(*obj.LSym))
    
    // Move and Zero optimizations.
    // Move source and destination may overlap.
    
    // Convert Moves into Zeros when the source is known to be zeros.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. gradle/verification-keyring.keys

    Version: BCPG v1.68
    
    mQINBF09IUABEAC2p2RNMRu3DgovIw/OuG4BL101EzTepeoPzRbKll+/xtNiN270
    ekSio9Of9nn7ZV0n4AH1nFM4iQqAC4KFZ74NrgJ+EeHoh3eZr7hyQ/TW7p0z4097
    Dm+C9PbN6+7wf1sBdlaRwsQ+eNKkdkal7WGNXUX1YiUtof8WZZRkiqRFD+0Ldsnm
    frJFKc3MPPWR0UC56JmqzMaN0XeiQvcDaoJJ6W8XLT4QbzwQMJVpA1wKyfMNodPO
    kvJ7jOFNLuLA3a8hE/ZFrvMJgp6yziQoIxC+Rlim1AN0leLsfgjVU7TnqTS8Z8+B
    i2LRwpJhLS/HbaiRsJbpXOr53GPiTuZTz78OIq30nqAg40O+NWghOX93DzB7j1xF
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// result: devirtLECall(v, fn.(*obj.LSym))
    	for {
    		if len(v.Args) < 1 {
    			break
    		}
    		v_0 := v.Args[0]
    		if v_0.Op != OpAddr {
    			break
    		}
    		fn := auxToSym(v_0.Aux)
    		v_0_0 := v_0.Args[0]
    		if v_0_0.Op != OpSB {
    			break
    		}
    		v.copyOf(devirtLECall(v, fn.(*obj.LSym)))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top