Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for Constraint (0.34 sec)

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

    		rk := p.From.Reg
    		rj := p.To.Reg
    		rd := p.RegTo2
    
    		// See section 2.2.7.1 of https://loongson.github.io/LoongArch-Documentation/LoongArch-Vol1-EN.html
    		// for the register usage constraints.
    		if rd == rj || rd == rk {
    			c.ctxt.Diag("illegal register combination: %v\n", p)
    		}
    		o1 = OP_RRR(atomicInst[p.As], uint32(rk), uint32(rj), uint32(rd))
    	}
    
    	out[0] = o1
    	out[1] = o2
    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/runtime/mheap.go

    // they're fresh from the operating system. It updates heapArena metadata that is
    // critical for future page allocations.
    //
    // There are no locking constraints on this method.
    func (h *mheap) allocNeedsZero(base, npage uintptr) (needZero bool) {
    	for npage > 0 {
    		ai := arenaIndex(base)
    		ha := h.arenas[ai.l1()][ai.l2()]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top