Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Typelink (0.14 sec)

  1. src/cmd/link/internal/ld/elf.go

    	}
    	shstrtabAddstring(relro_prefix + ".typelink")
    	shstrtabAddstring(relro_prefix + ".itablink")
    	shstrtabAddstring(relro_prefix + ".gosymtab")
    	shstrtabAddstring(relro_prefix + ".gopclntab")
    
    	if ctxt.IsExternal() {
    		*FlagD = true
    
    		shstrtabAddstring(elfRelType + ".text")
    		shstrtabAddstring(elfRelType + ".rodata")
    		shstrtabAddstring(elfRelType + relro_prefix + ".typelink")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    func (l *Loader) SymAttr(i Sym) uint8 {
    	if l.IsExternal(i) {
    		// TODO: do something? External symbols have different representation of attributes.
    		// For now, ReflectMethod, NoSplit, GoType, and Typelink are used and they cannot be
    		// set by external symbol.
    		return 0
    	}
    	r, li := l.toLocal(i)
    	return r.Sym(li).Flag()
    }
    
    // Returns the size of the i-th symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/reflect/type.go

    			}
    			if tf.Offset != vf.Offset {
    				return false
    			}
    			if tf.Embedded() != vf.Embedded() {
    				return false
    			}
    		}
    		return true
    	}
    
    	return false
    }
    
    // typelinks is implemented in package runtime.
    // It returns a slice of the sections in each module,
    // and a slice of *rtype offsets in each module.
    //
    // The types in each module are sorted by string. That is, the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top