Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for needRaceCleanup (1.11 sec)

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

    		return true
    	}
    	if typ.IsInteger() {
    		return typ.Size() <= b.Func.Config.RegSize
    	}
    	return false
    }
    
    // needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
    func needRaceCleanup(sym *AuxCall, v *Value) bool {
    	f := v.Block.Func
    	if !f.Config.Race {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    			(Store {t4} (OffPtr <tt4> [o4] dst) d3
    				(Store {t5} (OffPtr <tt5> [o5] dst) d4
    					(Zero {t1} [n] dst mem)))))
    
    (SelectN [0] call:(StaticLECall {sym} a x)) && needRaceCleanup(sym, call) && clobber(call) => x
    (SelectN [0] call:(StaticLECall {sym} x)) && needRaceCleanup(sym, call) && clobber(call) => x
    
    // When rewriting append to growslice, we use as the new length the result of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
Back to top