Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for regoff (0.13 sec)

  1. src/cmd/compile/internal/ssa/opGen.go

    	{15, arm.REG_R15, -1, "R15"},
    	{16, arm.REG_F0, -1, "F0"},
    	{17, arm.REG_F1, -1, "F1"},
    	{18, arm.REG_F2, -1, "F2"},
    	{19, arm.REG_F3, -1, "F3"},
    	{20, arm.REG_F4, -1, "F4"},
    	{21, arm.REG_F5, -1, "F5"},
    	{22, arm.REG_F6, -1, "F6"},
    	{23, arm.REG_F7, -1, "F7"},
    	{24, arm.REG_F8, -1, "F8"},
    	{25, arm.REG_F9, -1, "F9"},
    	{26, arm.REG_F10, -1, "F10"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	relocsect := func(sect *sym.Section, syms []loader.Sym, base uint64) int {
    		// If main section has no bits, nothing to relocate.
    		if sect.Vaddr >= sect.Seg.Vaddr+sect.Seg.Filelen {
    			return 0
    		}
    		sect.Reloff = uint64(ctxt.Out.Offset())
    		for i, s := range syms {
    			if !ldr.AttrReachable(s) {
    				continue
    			}
    			if uint64(ldr.SymValue(s)) >= sect.Vaddr {
    				syms = syms[i:]
    				break
    			}
    		}
    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/ld/xcoff.go

    	sort.Slice(f.loaderReloc, func(i, j int) bool {
    		r1, r2 := f.loaderReloc[i], f.loaderReloc[j]
    		if r1.sym != r2.sym {
    			return r1.sym < r2.sym
    		}
    		if r1.roff != r2.roff {
    			return r1.roff < r2.roff
    		}
    		if r1.rtype != r2.rtype {
    			return r1.rtype < r2.rtype
    		}
    		return r1.symndx < r2.symndx
    	})
    
    	ep := ldr.Lookup(*flagEntrySymbol, 0)
    	xldr := &XcoffLdRel64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    func encodeRFFF(ins *instruction) uint32 {
    	return encodeR(ins.as, regF(ins.rs1), regF(ins.rs2), regF(ins.rd), ins.funct3, ins.funct7)
    }
    
    func encodeRFFFF(ins *instruction) uint32 {
    	return encodeR4(ins.as, regF(ins.rs1), regF(ins.rs2), regF(ins.rs3), regF(ins.rd), ins.funct3, ins.funct7)
    }
    
    func encodeRFFI(ins *instruction) uint32 {
    	return encodeR(ins.as, regF(ins.rs1), regF(ins.rs2), regI(ins.rd), ins.funct3, ins.funct7)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/ldpe.go

    				// the final binary, in which case the relocation
    				// target symbol won't be reachable.
    				rType |= objabi.R_WEAK
    			}
    
    			rel, _ := sb.AddRel(rType)
    			rel.SetOff(rOff)
    			rel.SetSiz(rSize)
    			rel.SetSym(rSym)
    			rel.SetAdd(rAdd)
    
    		}
    
    		sb.SortRelocs()
    	}
    
    	// enter sub-symbols into symbol table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Section32.Align", Field, 0},
    		{"Section32.Flags", Field, 0},
    		{"Section32.Name", Field, 0},
    		{"Section32.Nreloc", Field, 0},
    		{"Section32.Offset", Field, 0},
    		{"Section32.Reloff", Field, 0},
    		{"Section32.Reserve1", Field, 0},
    		{"Section32.Reserve2", Field, 0},
    		{"Section32.Seg", Field, 0},
    		{"Section32.Size", Field, 0},
    		{"Section64", Type, 0},
    		{"Section64.Addr", 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