Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 2GB (0.08 sec)

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

    	rs := r.Sym()
    	if target.IsAIX() {
    		ldr.Errorf(s, "archrelocaddr called for %s relocation\n", ldr.SymName(rs))
    	}
    	o1, o2 := unpackInstPair(target, val)
    
    	// Verify resulting address fits within a 31 bit (2GB) address space.
    	// This is a restriction arising  from the usage of lis (HA) + d-form
    	// (LO) instruction sequences used to implement absolute relocations
    	// on PPC64 prior to ISA 3.1 (P10). For consistency, maintain this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// exceed Go's 48 bit limit, it's extremely unlikely in
    	// practice.
    	//
    	// On 32-bit platforms, we accept the full 32-bit address
    	// space because doing so is cheap.
    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    	// On ios/arm64, although 64-bit pointers are presumably
    	// available, pointers are truncated to 33 bits in iOS <14.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top