Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decodetypeMapKey (0.23 sec)

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

    func decodetypeChanElem(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym) loader.Sym {
    	relocs := ldr.Relocs(symIdx)
    	return decodeRelocSym(ldr, symIdx, &relocs, int32(commonsize(arch))) // 0x1c / 0x30
    }
    
    func decodetypeMapKey(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym) loader.Sym {
    	relocs := ldr.Relocs(symIdx)
    	return decodeRelocSym(ldr, symIdx, &relocs, int32(commonsize(arch))) // 0x1c / 0x30
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    			s = d.typeRuntimeEface
    		} else {
    			s = d.typeRuntimeIface
    		}
    		d.newrefattr(die, dwarf.DW_AT_type, d.defgotype(s))
    
    	case abi.Map:
    		die = d.newdie(&dwtypes, dwarf.DW_ABRV_MAPTYPE, name)
    		s := decodetypeMapKey(d.ldr, d.arch, gotype)
    		d.newrefattr(die, dwarf.DW_AT_go_key, d.defgotype(s))
    		s = decodetypeMapValue(d.ldr, d.arch, gotype)
    		d.newrefattr(die, dwarf.DW_AT_go_elem, d.defgotype(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top