Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for hasSmallRotate (0.38 sec)

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

    	}
    	if logopt.Enabled() {
    		logopt.LogOpt(pos, "copy", "lower", funcName, fmt.Sprintf("%d bytes", s))
    	}
    }
    
    // hasSmallRotate reports whether the architecture has rotate instructions
    // for sizes < 32-bit.  This is used to decide whether to promote some rotations.
    func hasSmallRotate(c *Config) bool {
    	switch c.arch {
    	case "amd64", "386":
    		return true
    	default:
    		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)
Back to top