Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for setAddr (0.18 sec)

  1. src/runtime/stack.go

    // +------------------+
    // |  args to callee  |
    // +------------------+ <- frame->sp
    //
    // (arm)
    // +------------------+
    // | args from caller |
    // +------------------+ <- frame->argp
    // | caller's retaddr |
    // +------------------+
    // |  caller's FP (*) | (*) on ARM64, if framepointer_enabled && varp > sp
    // +------------------+ <- frame->varp
    // |     locals       |
    // +------------------+
    // |  args to callee  |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // then the entire ecosystem of packages with that as a dependency had to
    // explicitly update to the new version. Many packages depend on
    // assume-no-moving-gc transitively, through paths like
    // inet.af/netaddr -> go4.org/intern -> assume-no-moving-gc.
    // This was causing a significant amount of friction around each new
    // release, so we added this bool for the package to //go:linkname
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			tplt := int32(rel.Size())
    			ctxt.loader.SetPlt(targ, tplt)
    
    			if su == nil {
    				su = ctxt.loader.MakeSymbolUpdater(s)
    			}
    			r.SetSym(rel.Sym())
    			r.SetAdd(int64(tplt))
    
    			// jmp *addr
    			switch ctxt.Arch.Family {
    			default:
    				return fmt.Errorf("internal error in windynrelocsym: unsupported arch %v", ctxt.Arch.Family)
    			case sys.I386:
    				rel.AddUint8(0xff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top