Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for auch (0.33 sec)

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

    	// cond: symIsRO(sym)
    	// result: (MOVLconst [int32(read32(sym, int64(off), config.ctxt.Arch.ByteOrder))])
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpSB || !(symIsRO(sym)) {
    			break
    		}
    		v.reset(Op386MOVLconst)
    		v.AuxInt = int32ToAuxInt(int32(read32(sym, int64(off), config.ctxt.Arch.ByteOrder)))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  2. doc/go_spec.html

    	if x < y {
    		return x
    	}
    	return y
    }
    </pre>
    
    <p>
    A function declaration without type parameters may omit the body.
    Such a declaration provides the signature for a function implemented outside Go,
    such as an assembly routine.
    </p>
    
    <pre>
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    type intrinsicKey struct {
    	arch *sys.Arch
    	pkg  string
    	fn   string
    }
    
    func InitTables() {
    	intrinsics = map[intrinsicKey]intrinsicBuilder{}
    
    	var all []*sys.Arch
    	var p4 []*sys.Arch
    	var p8 []*sys.Arch
    	var lwatomics []*sys.Arch
    	for _, a := range &sys.Archs {
    		all = append(all, a)
    		if a.PtrSize == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteARM.go

    	// cond: symIsRO(sym)
    	// result: (MOVWconst [int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder))])
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		if v_0.Op != OpSB || !(symIsRO(sym)) {
    			break
    		}
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(int32(read16(sym, int64(off), config.ctxt.Arch.ByteOrder)))
    		return true
    	}
    	return false
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top