core/core_timing: Replace logging macros
This commit is contained in:
		@@ -53,11 +53,11 @@ inline s64 usToCycles(int us) {
 | 
			
		||||
 | 
			
		||||
inline s64 usToCycles(s64 us) {
 | 
			
		||||
    if (us / 1000000 > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        NGLOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        return std::numeric_limits<s64>::max();
 | 
			
		||||
    }
 | 
			
		||||
    if (us > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        NGLOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        return BASE_CLOCK_RATE_ARM11 * (us / 1000000);
 | 
			
		||||
    }
 | 
			
		||||
    return (BASE_CLOCK_RATE_ARM11 * us) / 1000000;
 | 
			
		||||
@@ -65,11 +65,11 @@ inline s64 usToCycles(s64 us) {
 | 
			
		||||
 | 
			
		||||
inline s64 usToCycles(u64 us) {
 | 
			
		||||
    if (us / 1000000 > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        NGLOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        return std::numeric_limits<s64>::max();
 | 
			
		||||
    }
 | 
			
		||||
    if (us > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        NGLOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        return BASE_CLOCK_RATE_ARM11 * static_cast<s64>(us / 1000000);
 | 
			
		||||
    }
 | 
			
		||||
    return (BASE_CLOCK_RATE_ARM11 * static_cast<s64>(us)) / 1000000;
 | 
			
		||||
@@ -85,11 +85,11 @@ inline s64 nsToCycles(int ns) {
 | 
			
		||||
 | 
			
		||||
inline s64 nsToCycles(s64 ns) {
 | 
			
		||||
    if (ns / 1000000000 > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        NGLOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        return std::numeric_limits<s64>::max();
 | 
			
		||||
    }
 | 
			
		||||
    if (ns > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        NGLOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        return BASE_CLOCK_RATE_ARM11 * (ns / 1000000000);
 | 
			
		||||
    }
 | 
			
		||||
    return (BASE_CLOCK_RATE_ARM11 * ns) / 1000000000;
 | 
			
		||||
@@ -97,11 +97,11 @@ inline s64 nsToCycles(s64 ns) {
 | 
			
		||||
 | 
			
		||||
inline s64 nsToCycles(u64 ns) {
 | 
			
		||||
    if (ns / 1000000000 > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        NGLOG_ERROR(Core_Timing, "Integer overflow, use max value");
 | 
			
		||||
        return std::numeric_limits<s64>::max();
 | 
			
		||||
    }
 | 
			
		||||
    if (ns > MAX_VALUE_TO_MULTIPLY) {
 | 
			
		||||
        LOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        NGLOG_DEBUG(Core_Timing, "Time very big, do rounding");
 | 
			
		||||
        return BASE_CLOCK_RATE_ARM11 * (static_cast<s64>(ns) / 1000000000);
 | 
			
		||||
    }
 | 
			
		||||
    return (BASE_CLOCK_RATE_ARM11 * static_cast<s64>(ns)) / 1000000000;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user