Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for morestack_noctxt (0.16 sec)

  1. src/cmd/internal/obj/mips/obj0.go

    	p.As = AJAL
    	p.To.Type = obj.TYPE_BRANCH
    	if c.cursym.CFunc() {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestackc")
    	} else if !c.cursym.Func().Text.From.Sym.NeedCtxt() {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestack_noctxt")
    	} else {
    		p.To.Sym = c.ctxt.Lookup("runtime.morestack")
    	}
    	p.Mark |= BRANCH
    
    	p = c.ctxt.EndUnsafePoint(p, c.newprog, -1)
    
    	// JMP	start
    	p = obj.Appendp(p, c.newprog)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    	var morestacksym *obj.LSym
    	if c.cursym.CFunc() {
    		morestacksym = c.ctxt.Lookup("runtime.morestackc")
    	} else if !c.cursym.Func().Text.From.Sym.NeedCtxt() {
    		morestacksym = c.ctxt.Lookup("runtime.morestack_noctxt")
    	} else {
    		morestacksym = c.ctxt.Lookup("runtime.morestack")
    	}
    
    	if NeedTOCpointer(c.ctxt) {
    		// In PPC64 PIC code, R2 is used as TOC pointer derived from R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6.go

    	call.To.Name = obj.NAME_EXTERN
    	morestack := "runtime.morestack"
    	switch {
    	case cursym.CFunc():
    		morestack = "runtime.morestackc"
    	case !cursym.Func().Text.From.Sym.NeedCtxt():
    		morestack = "runtime.morestack_noctxt"
    	}
    	call.To.Sym = ctxt.Lookup(morestack)
    	// When compiling 386 code for dynamic linking, the call needs to be adjusted
    	// to follow PIC rules. This in turn can insert more instructions, so we need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    	p.As = obj.ACALL
    	p.To.Type = obj.TYPE_BRANCH
    
    	if cursym.CFunc() {
    		p.To.Sym = ctxt.Lookup("runtime.morestackc")
    	} else if !cursym.Func().Text.From.Sym.NeedCtxt() {
    		p.To.Sym = ctxt.Lookup("runtime.morestack_noctxt")
    	} else {
    		p.To.Sym = ctxt.Lookup("runtime.morestack")
    	}
    	if to_more != nil {
    		to_more.To.SetTarget(p)
    	}
    	jalToSym(ctxt, p, REG_X5)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top