Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for extreloc (0.38 sec)

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

    		}
    
    		// Compute external relocations on the go, and pass to Machoreloc1
    		// to stream out.
    		relocs := ldr.Relocs(s)
    		for ri := 0; ri < relocs.Count(); ri++ {
    			r := relocs.At(ri)
    			rr, ok := extreloc(ctxt, ldr, s, r)
    			if !ok {
    				continue
    			}
    			if rr.Xsym == 0 {
    				ldr.Errorf(s, "missing xsym in relocation")
    				continue
    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    				break
    			}
    			// Compute external relocations on the go, and pass to PEreloc1
    			// to stream out.
    			relocs := ldr.Relocs(s)
    			for ri := 0; ri < relocs.Count(); ri++ {
    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    				if rr.Xsym == 0 {
    					ctxt.Errorf(s, "missing xsym in relocation")
    					continue
    				}
    				if ldr.SymDynid(rr.Xsym) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	rs []goobj.Reloc
    
    	li uint32   // local index of symbol whose relocs we're examining
    	r  *oReader // object reader for containing package
    	l  *Loader  // loader
    }
    
    // ExtReloc contains the payload for an external relocation.
    type ExtReloc struct {
    	Xsym Sym
    	Xadd int64
    	Type objabi.RelocType
    	Size uint8
    }
    
    // Reloc holds a "handle" to access a relocation record from an
    // object file.
    type Reloc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    			}
    			sort.Slice(sorted, func(i, j int) bool {
    				return relocs.At(sorted[i]).Off() < relocs.At(sorted[j]).Off()
    			})
    
    			for _, ri := range sorted {
    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    				if rr.Xsym == 0 {
    					ldr.Errorf(s, "missing xsym in relocation")
    					continue
    				}
    				if ldr.SymDynid(rr.Xsym) < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/body.md

        Enviar um corpo em uma requisição `GET` não tem um comportamento definido nas especificações, porém é suportado pelo FastAPI, apenas para casos de uso bem complexos/extremos.
    
        Como é desencorajado, a documentação interativa com Swagger UI não irá mostrar a documentação para o corpo da requisição para um `GET`, e proxies que intermediarem podem não suportar o corpo da requisição.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/debug/dwarf/entry.go

    			}
    		}
    		b.uint()
    		b.uint()
    
    		m[id] = a
    	}
    	if b.err != nil {
    		return nil, b.err
    	}
    	d.abbrevCache[off] = m
    	return m, nil
    }
    
    // attrIsExprloc indicates attributes that allow exprloc values that
    // are encoded as block values in DWARF 2 and 3. See DWARF 4, Figure
    // 20.
    var attrIsExprloc = map[Attr]bool{
    	AttrLocation:      true,
    	AttrByteSize:      true,
    	AttrBitOffset:     true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    		case macho.LoadCmdDysymtab:
    			err = machoUpdateLoadCommand(reader, linkseg, linkoffset, &macho.DysymtabCmd{}, "Tocoffset", "Modtaboff", "Extrefsymoff", "Indirectsymoff", "Extreloff", "Locreloff")
    		case LC_CODE_SIGNATURE, LC_SEGMENT_SPLIT_INFO, LC_FUNCTION_STARTS, LC_DATA_IN_CODE, LC_DYLIB_CODE_SIGN_DRS,
    			LC_DYLD_EXPORTS_TRIE, LC_DYLD_CHAINED_FIXUPS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Dysymtab.IndirectSyms", Field, 0},
    		{"Dysymtab.LoadBytes", Field, 0},
    		{"DysymtabCmd", Type, 0},
    		{"DysymtabCmd.Cmd", Field, 0},
    		{"DysymtabCmd.Extrefsymoff", Field, 0},
    		{"DysymtabCmd.Extreloff", Field, 0},
    		{"DysymtabCmd.Iextdefsym", Field, 0},
    		{"DysymtabCmd.Ilocalsym", Field, 0},
    		{"DysymtabCmd.Indirectsymoff", Field, 0},
    		{"DysymtabCmd.Iundefsym", Field, 0},
    		{"DysymtabCmd.Len", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top