Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Siz (0.02 sec)

  1. src/cmd/link/internal/wasm/asm.go

    		} else {
    			// Relocations have variable length, handle them here.
    			relocs := ldr.Relocs(fn)
    			P := ldr.Data(fn)
    			off := int32(0)
    			for ri := 0; ri < relocs.Count(); ri++ {
    				r := relocs.At(ri)
    				if r.Siz() == 0 {
    					continue // skip marker relocations
    				}
    				wfn.Write(P[off:r.Off()])
    				off = r.Off()
    				rs := r.Sym()
    				switch r.Type() {
    				case objabi.R_ADDR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	InlTree   InlTree                        // per-function inlining tree extracted from the global tree
    }
    
    type Reloc struct {
    	Off  int32
    	Siz  uint8
    	Type objabi.RelocType
    	Add  int64
    	Sym  *LSym
    }
    
    type Auto struct {
    	Asym    *LSym
    	Aoffset int32
    	Name    AddrName
    	Gotype  *LSym
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    			}
    			if !thearch.Machoreloc1(ctxt.Arch, out, ldr, s, rr, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-sect.Vaddr)) {
    				ldr.Errorf(s, "unsupported obj reloc %d (%s)/%d to %s", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), r.Siz(), ldr.SymName(r.Sym()))
    			}
    		}
    	}
    
    	// sanity check
    	if uint64(out.Offset()) != sect.Reloff+sect.Rellen {
    		panic("machorelocsect: size mismatch")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    				q = obj.Appendp(q, c.newprog)
    				q.As = AWORD
    				q.Pos = p.Pos
    				q.From.Type = obj.TYPE_CONST
    				q.From.Offset = 0x38420000
    				rel := obj.Addrel(c.cursym)
    				rel.Off = 0
    				rel.Siz = 8
    				rel.Sym = c.ctxt.Lookup(".TOC.")
    				rel.Type = objabi.R_ADDRPOWER_PCREL
    			}
    
    			if !c.cursym.Func().Text.From.Sym.NoSplit() {
    				q = c.stacksplit(q, autosize) // emit split check
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    	EvFrequency:         {"Frequency", 5, false, []string{"freq"}, nil},   // in 1.5 format it was {"freq", "unused"}
    	EvStack:             {"Stack", 5, false, []string{"id", "siz"}, nil},
    	EvGomaxprocs:        {"Gomaxprocs", 5, true, []string{"procs"}, nil},
    	EvProcStart:         {"ProcStart", 5, false, []string{"thread"}, nil},
    	EvProcStop:          {"ProcStop", 5, false, []string{}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top