Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for symabi (0.11 sec)

  1. src/cmd/compile/internal/ssagen/abi.go

    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/obj/wasm"
    )
    
    // SymABIs records information provided by the assembler about symbol
    // definition ABIs and reference ABIs.
    type SymABIs struct {
    	defs map[string]obj.ABI
    	refs map[string]obj.ABISet
    }
    
    func NewSymABIs() *SymABIs {
    	return &SymABIs{
    		defs: make(map[string]obj.ABI),
    		refs: make(map[string]obj.ABISet),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    }
    
    // moduledata records information about the layout of the executable
    // image. It is written by the linker. Any changes here must be
    // matched changes to the code in cmd/link/internal/ld/symtab.go:symtab.
    // moduledata is stored in statically allocated non-pointer memory;
    // none of the pointers here are visible to the garbage collector.
    type moduledata struct {
    	sys.NotInHeap // Only in static data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gc.go

    			return err
    		}
    
    		return sh.run(p.Dir, p.ImportPath, nil, args...)
    	}
    
    	var symabis string // Only set if we actually create the file
    	p := a.Package
    	if len(sfiles) != 0 {
    		symabis = a.Objdir + "symabis"
    		if err := mkSymabis(p, sfiles, symabis); err != nil {
    			return "", err
    		}
    	}
    
    	return symabis, nil
    }
    
    // toolVerify checks that the command line args writes the same output file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadelf/ldelf.go

    		}
    	}
    
    	// load string table for symbols into memory.
    	elfobj.symtab = section(elfobj, ".symtab")
    
    	if elfobj.symtab == nil {
    		// our work is done here - no symbols means nothing can refer to this file
    		return
    	}
    
    	if elfobj.symtab.link <= 0 || elfobj.symtab.link >= uint32(elfobj.nsect) {
    		return errorf("elf object has symbol table with invalid string table link")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    			symtab.AddUint8(0x01)                             // type N_EXT, external symbol
    			symtab.AddUint8(0)                                // no section
    			symtab.AddUint16(ctxt.Arch, 0)                    // desc
    			symtab.AddUintXX(ctxt.Arch, 0, ctxt.Arch.PtrSize) // no value
    		} else {
    			if export || ldr.AttrCgoExportDynamic(s) {
    				symtab.AddUint8(0x0f) // N_SECT | N_EXT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. docs/tr/docs/alternatives.md

    Ama... Python'un tip belirteçleri gelmeden önce oluşturulmuştu. Yani her <abbr title="Verilerin nasıl oluşturulması gerektiğinin tanımı">şemayı</abbr> tanımlamak için Marshmallow'un sunduğu spesifik araçları ve sınıfları kullanmanız gerekiyordu.
    
    !!! check "**FastAPI**'a nasıl ilham verdi?"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pcln.go

    	nameOffsets := make(map[loader.Sym]uint32, state.nfunc)
    
    	// Write the null terminated strings.
    	writeFuncNameTab := func(ctxt *Link, s loader.Sym) {
    		symtab := ctxt.loader.MakeSymbolUpdater(s)
    		for s, off := range nameOffsets {
    			symtab.AddCStringAt(int64(off), ctxt.loader.SymName(s))
    		}
    	}
    
    	// Loop through the CUs, and calculate the size needed.
    	var size int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

    import org.jetbrains.kotlin.fir.symbols.impl.FirClassSymbol
    import org.jetbrains.kotlin.fir.symbols.lazyResolveToPhaseWithCallableMembers
    import org.jetbrains.kotlin.fir.types.typeApproximator
    import org.jetbrains.kotlin.load.java.JvmAbi
    import org.jetbrains.kotlin.load.kotlin.NON_EXISTENT_CLASS_NAME
    import org.jetbrains.kotlin.load.kotlin.header.KotlinClassHeader
    import org.jetbrains.kotlin.metadata.jvm.deserialization.JvmProtoBufUtil
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    		return
    	}
    	fmt.Fprintf(os.Stderr, "cmd/go: gccgo: %s\n", gccgoErr)
    	base.SetExitStatus(2)
    	base.Exit()
    }
    
    func (tools gccgoToolchain) gc(b *Builder, a *Action, archive string, importcfg, embedcfg []byte, symabis string, asmhdr bool, pgoProfile string, gofiles []string) (ofile string, output []byte, err error) {
    	p := a.Package
    	sh := b.Shell(a)
    	objdir := a.Objdir
    	out := "_go_.o"
    	ofile = objdir + out
    	gcargs := []string{"-g"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/main.go

    	pclnState := ctxt.pclntab(containers)
    	bench.Start("findfunctab")
    	ctxt.findfunctab(pclnState, containers)
    	bench.Start("dwarfGenerateDebugSyms")
    	dwarfGenerateDebugSyms(ctxt)
    	bench.Start("symtab")
    	symGroupType := ctxt.symtab(pclnState)
    	bench.Start("dodata")
    	ctxt.dodata(symGroupType)
    	bench.Start("address")
    	order := ctxt.address()
    	bench.Start("dwarfcompress")
    	dwarfcompress(ctxt)
    	bench.Start("layout")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top