Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for regoff (0.11 sec)

  1. src/runtime/heapdump.go

    		name = "unknown function"
    	}
    	dumpstr(name)
    
    	// Dump fields in the outargs section
    	if child.args.n >= 0 {
    		dumpbv(&child.args, child.argoff)
    	} else {
    		// conservative - everything might be a pointer
    		for off := child.argoff; off < child.argoff+child.arglen; off += goarch.PtrSize {
    			dumpint(fieldKindPtr)
    			dumpint(uint64(off))
    		}
    	}
    
    	// Dump fields in the local vars section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/arch/loong64.go

    func IsLoong64AMO(op obj.As) bool {
    	return loong64.IsAtomicInst(op)
    }
    
    func loong64RegisterNumber(name string, n int16) (int16, bool) {
    	switch name {
    	case "F":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_F0 + n, true
    		}
    	case "FCSR":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_FCSR0 + n, true
    		}
    	case "FCC":
    		if 0 <= n && n <= 31 {
    			return loong64.REG_FCC0 + n, true
    		}
    	case "R":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/ppc64.go

    	case "VS":
    		if 0 <= n && n <= 63 {
    			return ppc64.REG_VS0 + n, true
    		}
    	case "V":
    		if 0 <= n && n <= 31 {
    			return ppc64.REG_V0 + n, true
    		}
    	case "F":
    		if 0 <= n && n <= 31 {
    			return ppc64.REG_F0 + n, true
    		}
    	case "R":
    		if 0 <= n && n <= 31 {
    			return ppc64.REG_R0 + n, true
    		}
    	case "SPR":
    		if 0 <= n && n <= 1024 {
    			return ppc64.REG_SPR0 + n, true
    		}
    	}
    	return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/arm64/list7.go

    	if r == REGG {
    		return "g"
    	}
    	switch {
    	case REG_R0 <= r && r <= REG_R30:
    		return fmt.Sprintf("R%d", r-REG_R0)
    	case r == REG_R31:
    		return "ZR"
    	case REG_F0 <= r && r <= REG_F31:
    		return fmt.Sprintf("F%d", r-REG_F0)
    	case REG_V0 <= r && r <= REG_V31:
    		return fmt.Sprintf("V%d", r-REG_V0)
    	case r == REGSP:
    		return "RSP"
    	case REG_UXTB <= r && r < REG_UXTH:
    		if ext != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. cmd/object-api-utils.go

    			off, decOff, firstPart, decryptSkip, seqNum = getCompressedOffsets(oi, off, decrypt)
    			decLength = length
    			length = oi.Size - off
    			// For negative length we read everything.
    			if decLength < 0 {
    				decLength = actualSize - decOff
    			}
    
    			// Reply back invalid range if the input offset and length fall out of range.
    			if decOff > actualSize || decOff+decLength > actualSize {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    			}
    			if cSect.Addr != 0 {
    				sect.Addr = cSect.Addr
    			}
    		} else {
    			if sect.Offset != 0 {
    				sect.Offset += uint32(deltaOffset)
    			}
    			if sect.Reloff != 0 {
    				sect.Reloff += uint32(deltaOffset)
    			}
    		}
    		if err := r.WriteAt(sectOffset, &sect); err != nil {
    			return err
    		}
    		sectOffset += sectSize
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    		print(" span.base()=", hex(s.base()), " span.limit=", hex(s.limit), " span.state=", state)
    	}
    	print("\n")
    	if refBase != 0 {
    		print("runtime: found in object at *(", hex(refBase), "+", hex(refOff), ")\n")
    		gcDumpObject("object", refBase, refOff)
    	}
    	getg().m.traceback = 2
    	throw("found bad pointer in Go heap (incorrect use of unsafe or cgo?)")
    }
    
    // findObject returns the base address for the heap object containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modindex/read.go

    func (m *Module) pkgDir(i int) string {
    	if i < 0 || i >= m.n {
    		panic(errCorrupt)
    	}
    	return m.d.stringAt(12 + 8 + 8*i)
    }
    
    // pkgOff returns the offset of the data for the i'th package in the index.
    func (m *Module) pkgOff(i int) int {
    	if i < 0 || i >= m.n {
    		panic(errCorrupt)
    	}
    	return m.d.intAt(12 + 8 + 8*i + 4)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    		if err != nil {
    			return err
    		}
    	}
    
    	cs := make([]byte, sz)
    	codesign.Sign(cs, f, "a.out", sigOff, int64(textSeg.Offset), int64(textSeg.Filesz), ctxt.IsExe() || ctxt.IsPIE())
    	_, err = f.WriteAt(cs, sigOff)
    	if err != nil {
    		return err
    	}
    	err = f.Truncate(sigOff + sz)
    	return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	case REG_SP, REG_BP, REG_SI, REG_DI:
    		if ctxt.Arch.Family == sys.I386 {
    			return Yrl32
    		}
    		return Yrl
    
    	case REG_F0 + 0:
    		return Yf0
    
    	case REG_F0 + 1,
    		REG_F0 + 2,
    		REG_F0 + 3,
    		REG_F0 + 4,
    		REG_F0 + 5,
    		REG_F0 + 6,
    		REG_F0 + 7:
    		return Yrf
    
    	case REG_M0 + 0,
    		REG_M0 + 1,
    		REG_M0 + 2,
    		REG_M0 + 3,
    		REG_M0 + 4,
    		REG_M0 + 5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top