Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for SymAddr (0.09 sec)

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

    	// (LO) instruction sequences used to implement absolute relocations
    	// on PPC64 prior to ISA 3.1 (P10). For consistency, maintain this
    	// restriction for ISA 3.1 unless it becomes problematic.
    	t := ldr.SymAddr(rs) + r.Add()
    	if t < 0 || t >= 1<<31 {
    		ldr.Errorf(s, "relocation for %s is too big (>=2G): 0x%x", ldr.SymName(s), ldr.SymValue(rs))
    	}
    
    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/cmd/compile/internal/ssa/rewrite.go

    			continue
    		}
    		if v.Type.IsTuple() && v.Type.FieldType(1).IsMemory() {
    			// We could handle this situation however it is likely
    			// to be very rare.
    			return false
    		}
    		if v.Op.SymEffect()&SymAddr != 0 {
    			// This case prevents an operation that calculates the
    			// address of a local variable from being forced to schedule
    			// before its corresponding VarDef.
    			// See issue 28445.
    			//   v1 = LOAD ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top