Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for domacho (0.17 sec)

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

    	ctxt.doStackCheck()
    
    	bench.Start("mangleTypeSym")
    	ctxt.mangleTypeSym()
    
    	if ctxt.IsELF {
    		bench.Start("doelf")
    		ctxt.doelf()
    	}
    	if ctxt.IsDarwin() {
    		bench.Start("domacho")
    		ctxt.domacho()
    	}
    	if ctxt.IsWindows() {
    		bench.Start("dope")
    		ctxt.dope()
    		bench.Start("windynrelocsyms")
    		ctxt.windynrelocsyms()
    	}
    	if ctxt.IsAIX() {
    		bench.Start("doxcoff")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    		return err
    	}
    	defer f.Close()
    
    	mf, err := macho.NewFile(f)
    	if err != nil {
    		return err
    	}
    	if mf.Magic != macho.Magic64 {
    		Exitf("not 64-bit Mach-O file: %s", fname)
    	}
    
    	// Find existing LC_CODE_SIGNATURE and __LINKEDIT segment
    	var sigOff, sigSz, csCmdOff, linkeditOff int64
    	var linkeditSeg, textSeg *macho.Segment
    	loadOff := int64(machoHeaderSize64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/macho.go

    import (
    	"debug/dwarf"
    	"debug/macho"
    	"fmt"
    	"io"
    	"sort"
    )
    
    const stabTypeMask = 0xe0
    
    type machoFile struct {
    	macho *macho.File
    }
    
    func openMacho(r io.ReaderAt) (rawFile, error) {
    	f, err := macho.NewFile(r)
    	if err != nil {
    		return nil, err
    	}
    	return &machoFile{f}, nil
    }
    
    func (f *machoFile) symbols() ([]Sym, error) {
    	if f.macho.Symtab == nil {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. src/debug/macho/macho.go

    // https://web.archive.org/web/20090819232456/http://developer.apple.com/documentation/DeveloperTools/Conceptual/MachORuntime/index.html
    // For cloned PDF see:
    // https://github.com/aidansteele/osx-abi-macho-file-format-reference
    
    package macho
    
    import "strconv"
    
    // A FileHeader represents a Mach-O file header.
    type FileHeader struct {
    	Magic  uint32
    	Cpu    Cpu
    	SubCpu uint32
    	Type   Type
    	Ncmd   uint32
    	Cmdsz  uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadmacho/ldmacho.go

    Cherry Mui <******@****.***> 1651859543 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/typedef.macho

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheSupport.java

            if (value == null) {
                value = factory.apply(key);
                doCache(key, value);
            }
    
            return value;
        }
    
        @Override
        public V getIfPresent(K key) {
            return doGet(key);
        }
    
        @Override
        public void put(K key, V value) {
            doCache(key, value);
        }
    
        abstract protected <T extends K> V doGet(T key);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/internal/buildid/testdata/a.macho.base64

    Andrew <******@****.***> 1574269611 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 21 14:55:12 UTC 2019
    - 17.5K bytes
    - Viewed (0)
  9. api/go1.10.txt

    pkg debug/macho, const FlagBindsToWeak uint32
    pkg debug/macho, const FlagCanonical = 16384
    pkg debug/macho, const FlagCanonical uint32
    pkg debug/macho, const FlagDeadStrippableDylib = 4194304
    pkg debug/macho, const FlagDeadStrippableDylib uint32
    pkg debug/macho, const FlagDyldLink = 4
    pkg debug/macho, const FlagDyldLink uint32
    pkg debug/macho, const FlagForceFlat = 256
    pkg debug/macho, const FlagForceFlat uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  10. src/debug/macho/reloctype.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package macho
    
    //go:generate stringer -type=RelocTypeGeneric,RelocTypeX86_64,RelocTypeARM,RelocTypeARM64 -output reloctype_string.go
    
    type RelocTypeGeneric int
    
    const (
    	GENERIC_RELOC_VANILLA        RelocTypeGeneric = 0
    	GENERIC_RELOC_PAIR           RelocTypeGeneric = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 18:45:40 UTC 2017
    - 2.4K bytes
    - Viewed (0)
Back to top