Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for textstksiz (0.19 sec)

  1. src/cmd/internal/obj/arm64/obj7.go

    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    		// Historical way to mark NOFRAME.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz < 0 {
    		c.ctxt.Diag("negative frame size %d - did you mean NOFRAME?", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/objz.go

    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    		// Compatibility hack.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz%8 != 0 {
    		c.ctxt.Diag("frame size %d not a multiple of 8", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/obj.go

    	c := ctxt0{ctxt: ctxt, newprog: newprog, cursym: cursym}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    
    	if textstksiz < 0 {
    		c.ctxt.Diag("negative frame size %d - did you mean NOFRAME?", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    			c.ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", textstksiz)
    		}
    	}
    
    	c.cursym.Func().Args = p.To.Val.(int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/mips/obj0.go

    		return
    	}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -ctxt.Arch.FixedFrameSize {
    		// Historical way to mark NOFRAME.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz < 0 {
    		c.ctxt.Diag("negative frame size %d - did you mean NOFRAME?", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/obj9.go

    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    		// Compatibility hack.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz%8 != 0 {
    		c.ctxt.Diag("frame size %d not a multiple of 8", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top