Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MakeTypelink (0.13 sec)

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

    type Attribute uint32
    
    const (
    	AttrDuplicateOK Attribute = 1 << iota
    	AttrCFunc
    	AttrNoSplit
    	AttrLeaf
    	AttrWrapper
    	AttrNeedCtxt
    	AttrNoFrame
    	AttrOnList
    	AttrStatic
    
    	// MakeTypelink means that the type should have an entry in the typelink table.
    	AttrMakeTypelink
    
    	// ReflectMethod means the function may call reflect.Type.Method or
    	// reflect.Type.MethodByName. Matching is imprecise (as reflect.Type
    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/internal/obj/objfile.go

    	if s.Static() {
    		abi = goobj.SymABIstatic
    	}
    	flag := uint8(0)
    	if s.DuplicateOK() {
    		flag |= goobj.SymFlagDupok
    	}
    	if s.Local() {
    		flag |= goobj.SymFlagLocal
    	}
    	if s.MakeTypelink() {
    		flag |= goobj.SymFlagTypelink
    	}
    	if s.Leaf() {
    		flag |= goobj.SymFlagLeaf
    	}
    	if s.NoSplit() {
    		flag |= goobj.SymFlagNoSplit
    	}
    	if s.ReflectMethod() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top