Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for debugLog (0.17 sec)

  1. src/cmd/link/internal/ld/data.go

    				}
    			}
    			n++
    		}
    	}
    
    	ldr.SetSymValue(s, 0)
    	for sub := s; sub != 0; sub = ldr.SubSym(sub) {
    		ldr.SetSymValue(sub, ldr.SymValue(sub)+int64(va))
    		if ctxt.Debugvlog > 2 {
    			fmt.Println("assign text address:", ldr.SymName(sub), ldr.SymValue(sub))
    		}
    	}
    
    	va += funcsize
    
    	return sect, n, va
    }
    
    func resetAddress(ctxt *Link, s loader.Sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	// We don't need the jump if following an unconditional branch.
    	// TODO: other unconditional operations.
    	if !(p.As == AB || p.As == obj.ARET || p.As == AERET) {
    		if c.ctxt.Debugvlog {
    			fmt.Printf("note: flush literal pool at %#x: len=%d ref=%x\n", uint64(p.Pc+4), c.pool.size, c.pool.start)
    		}
    		q := c.newprog()
    		if p.Link == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top