Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NeedCtxt (0.25 sec)

  1. src/cmd/internal/obj/link.go

    func (a *Attribute) Local() bool              { return a.load()&AttrLocal != 0 }
    func (a *Attribute) Wrapper() bool            { return a.load()&AttrWrapper != 0 }
    func (a *Attribute) NeedCtxt() bool           { return a.load()&AttrNeedCtxt != 0 }
    func (a *Attribute) NoFrame() bool            { return a.load()&AttrNoFrame != 0 }
    func (a *Attribute) Static() bool             { return a.load()&AttrStatic != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    func (f *Func) Wrapper() bool                  { return f.flags&funcWrapper != 0 }
    func (f *Func) ABIWrapper() bool               { return f.flags&funcABIWrapper != 0 }
    func (f *Func) Needctxt() bool                 { return f.flags&funcNeedctxt != 0 }
    func (f *Func) IsHiddenClosure() bool          { return f.flags&funcIsHiddenClosure != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    	p = c.ctxt.EmitEntryStackMap(c.cursym, p, c.newprog)
    
    	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) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    						s.storeParameterRegsToStack(s.f.ABISelf, paramAssignment, n, s.decladdrs[n], false)
    					}
    				}
    			}
    		}
    	}
    
    	// Populate closure variables.
    	if fn.Needctxt() {
    		clo := s.entryNewValue0(ssa.OpGetClosurePtr, s.f.Config.Types.BytePtr)
    		if fn.RangeParent != nil {
    			// For a range body closure, keep its closure pointer live on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top