Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for kldsym (0.3 sec)

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

    	// disabling 'recover' or appear in tracebacks by default.
    	WRAPPER = 32
    
    	// This function uses its incoming context register.
    	NEEDCTXT = 64
    
    	// When passed to objw.Global, causes Local to be set to true on the LSym it creates.
    	LOCAL = 128
    
    	// Allocate a word of thread local storage and store the offset from the
    	// thread local base to the thread local storage in this variable.
    	TLSBSS = 256
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm_test.go

    		{&obj.Addr{Type: obj.TYPE_ADDR, Name: obj.NAME_PARAM}, Yiauto},
    		{&obj.Addr{Type: obj.TYPE_ADDR, Name: obj.NAME_EXTERN}, Yiauto},
    		{&obj.Addr{Type: obj.TYPE_ADDR, Sym: &obj.LSym{Name: "runtime.duff"}}, Yi32},
    		{&obj.Addr{Type: obj.TYPE_ADDR, Offset: 4}, Yu7},
    		{&obj.Addr{Type: obj.TYPE_ADDR, Offset: 255}, Yu8},
    
    		{immAddr(0), Yi0},
    		{immAddr(1), Yi1},
    		{immAddr(2), Yu2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ld.go

     *	objref: object file referring to package
     *	file: object file, e.g., /home/rsc/go/pkg/container/vector.a
     *	pkg: package import path, e.g. container/vector
     */
    
    const (
    	LOG = 5
    )
    
    func mkfwd(sym *LSym) {
    	var dwn [LOG]int32
    	var cnt [LOG]int32
    	var lst [LOG]*Prog
    
    	for i := 0; i < LOG; i++ {
    		if i == 0 {
    			cnt[i] = 1
    		} else {
    			cnt[i] = LOG * cnt[i-1]
    		}
    		dwn[i] = 1
    		lst[i] = nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 16 03:02:36 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (d *dwctxt) importInfoSymbol(dsym loader.Sym) {
    	d.ldr.SetAttrReachable(dsym, true)
    	d.ldr.SetAttrNotInSymbolTable(dsym, true)
    	dst := d.ldr.SymType(dsym)
    	if dst != sym.SDWARFCONST && dst != sym.SDWARFABSFCN {
    		log.Fatalf("error: DWARF info sym %d/%s with incorrect type %s", dsym, d.ldr.SymName(dsym), d.ldr.SymType(dsym).String())
    	}
    	relocs := d.ldr.Relocs(dsym)
    	for i := 0; i < relocs.Count(); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/pkg.go

    	Path    string // string literal used in import statement, e.g. "runtime/internal/sys"
    	Name    string // package name, e.g. "sys"
    	Prefix  string // escaped path for use in symbol table
    	Syms    map[string]*Sym
    	Pathsym *obj.LSym
    
    	Direct bool // imported directly
    }
    
    // NewPkg returns a new Pkg for the given package path and name.
    // Unless name is the empty string, if the package exists already,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:28:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/dwarfgen/dwinl.go

    }
    
    // This is the main entry point for collection of raw material to
    // drive generation of DWARF "inlined subroutine" DIEs. See proposal
    // 22080 for more details and background info.
    func assembleInlines(fnsym *obj.LSym, dwVars []*dwarf.Var) dwarf.InlCalls {
    	var inlcalls dwarf.InlCalls
    
    	if base.Debug.DwarfInl != 0 {
    		base.Ctxt.Logf("assembling DWARF inlined routine info for %v\n", fnsym.Name)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/switch.go

    		if len(interfaceCases) > 0 {
    
    			// Build an internal/abi.InterfaceSwitch descriptor to pass to the runtime.
    			lsym := types.LocalPkg.Lookup(fmt.Sprintf(".interfaceSwitch.%d", interfaceSwitchGen)).LinksymABI(obj.ABI0)
    			interfaceSwitchGen++
    			c := rttype.NewCursor(lsym, 0, rttype.InterfaceSwitch)
    			c.Field("Cache").WritePtr(typecheck.LookupRuntimeVar("emptyInterfaceSwitchCache"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. docs/pl/docs/tutorial/first-steps.md

    
    ### Krok 2: utwórz instancję `FastAPI`
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Zmienna `app` będzie tutaj "instancją" klasy `FastAPI`.
    
    Będzie to główny punkt interakcji przy tworzeniu całego interfejsu API.
    
    Ta zmienna `app` jest tą samą zmienną, do której odnosi się `uvicorn` w poleceniu:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	return ir.NewAddrExpr(pos, Expr(n))
    }
    
    // LinksymAddr returns a new expression that evaluates to the address
    // of lsym. typ specifies the type of the addressed memory.
    func LinksymAddr(pos src.XPos, lsym *obj.LSym, typ *types.Type) *ir.AddrExpr {
    	n := ir.NewLinksymExpr(pos, lsym, typ)
    	return Expr(NodAddrAt(pos, n)).(*ir.AddrExpr)
    }
    
    func NodNil() ir.Node {
    	return ir.NewNilExpr(base.Pos, types.Types[types.TNIL])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/obj9.go

    		//     ADD $offset, R12
    		//     MOVD R12, LR
    		//     BL (LR)
    		var sym *obj.LSym
    		if p.As == obj.ADUFFZERO {
    			sym = c.ctxt.Lookup("runtime.duffzero")
    		} else {
    			sym = c.ctxt.Lookup("runtime.duffcopy")
    		}
    		// Retrieve or create the TOC anchor.
    		symtoc := c.ctxt.LookupInit("TOC."+sym.Name, func(s *obj.LSym) {
    			s.Type = objabi.SDATA
    			s.Set(obj.AttrDuplicateOK, true)
    			s.Set(obj.AttrStatic, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top