Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ir/func.go

    func (f *Func) SetABIWrapper(b bool)               { f.flags.set(funcABIWrapper, b) }
    func (f *Func) SetNeedctxt(b bool)                 { f.flags.set(funcNeedctxt, b) }
    func (f *Func) SetIsHiddenClosure(b bool)          { f.flags.set(funcIsHiddenClosure, b) }
    func (f *Func) SetIsDeadcodeClosure(b bool)        { f.flags.set(funcIsDeadcodeClosure, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticinit/sched.go

    			// want (moving the func to a static init will effectively
    			// hide it from escape analysis). Mark as non-hidden here.
    			// so that it will participated in escape analysis.
    			r.Func.SetIsHiddenClosure(false)
    			// Closures with no captured variables are globals,
    			// so the assignment can be done at link time.
    			// TODO if roff != 0 { panic }
    			staticdata.InitAddr(l, loff, staticdata.FuncLinksym(r.Func.Nname))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top