Browse Source
Merge pull request #803 from MerryMage/core_timing_util
Merge pull request #803 from MerryMage/core_timing_util
core_timing: Split off utility functions into core_timing_utilnce_cpp
committed by
GitHub
12 changed files with 146 additions and 114 deletions
-
20src/core/CMakeLists.txt
-
53src/core/core_timing.cpp
-
53src/core/core_timing.h
-
63src/core/core_timing_util.cpp
-
64src/core/core_timing_util.h
-
1src/core/hle/kernel/thread.cpp
-
1src/core/hle/kernel/timer.cpp
-
1src/core/hle/service/audio/audout_u.cpp
-
1src/core/hle/service/audio/audren_u.cpp
-
1src/core/hle/service/hid/hid.cpp
-
1src/core/hle/service/nvflinger/nvflinger.cpp
-
1src/core/hle/service/time/time.cpp
@ -0,0 +1,63 @@ |
|||
// Copyright 2008 Dolphin Emulator Project / 2017 Citra Emulator Project
|
|||
// Licensed under GPLv2+
|
|||
// Refer to the license.txt file included.
|
|||
|
|||
#include "core/core_timing_util.h"
|
|||
|
|||
#include <cinttypes>
|
|||
#include <limits>
|
|||
#include "common/logging/log.h"
|
|||
|
|||
namespace CoreTiming { |
|||
|
|||
constexpr u64 MAX_VALUE_TO_MULTIPLY = std::numeric_limits<s64>::max() / BASE_CLOCK_RATE; |
|||
|
|||
s64 usToCycles(s64 us) { |
|||
if (us / 1000000 > MAX_VALUE_TO_MULTIPLY) { |
|||
LOG_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"); |
|||
return BASE_CLOCK_RATE * (us / 1000000); |
|||
} |
|||
return (BASE_CLOCK_RATE * us) / 1000000; |
|||
} |
|||
|
|||
s64 usToCycles(u64 us) { |
|||
if (us / 1000000 > MAX_VALUE_TO_MULTIPLY) { |
|||
LOG_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"); |
|||
return BASE_CLOCK_RATE * static_cast<s64>(us / 1000000); |
|||
} |
|||
return (BASE_CLOCK_RATE * static_cast<s64>(us)) / 1000000; |
|||
} |
|||
|
|||
s64 nsToCycles(s64 ns) { |
|||
if (ns / 1000000000 > MAX_VALUE_TO_MULTIPLY) { |
|||
LOG_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"); |
|||
return BASE_CLOCK_RATE * (ns / 1000000000); |
|||
} |
|||
return (BASE_CLOCK_RATE * ns) / 1000000000; |
|||
} |
|||
|
|||
s64 nsToCycles(u64 ns) { |
|||
if (ns / 1000000000 > MAX_VALUE_TO_MULTIPLY) { |
|||
LOG_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"); |
|||
return BASE_CLOCK_RATE * (static_cast<s64>(ns) / 1000000000); |
|||
} |
|||
return (BASE_CLOCK_RATE * static_cast<s64>(ns)) / 1000000000; |
|||
} |
|||
|
|||
} // namespace CoreTiming
|
|||
@ -0,0 +1,64 @@ |
|||
// Copyright 2008 Dolphin Emulator Project / 2017 Citra Emulator Project |
|||
// Licensed under GPLv2+ |
|||
// Refer to the license.txt file included. |
|||
|
|||
#pragma once |
|||
|
|||
#include "common/common_types.h" |
|||
|
|||
namespace CoreTiming { |
|||
|
|||
// The below clock rate is based on Switch's clockspeed being widely known as 1.020GHz |
|||
// The exact value used is of course unverified. |
|||
constexpr u64 BASE_CLOCK_RATE = 1019215872; // Switch clock speed is 1020MHz un/docked |
|||
|
|||
inline s64 msToCycles(int ms) { |
|||
// since ms is int there is no way to overflow |
|||
return BASE_CLOCK_RATE * static_cast<s64>(ms) / 1000; |
|||
} |
|||
|
|||
inline s64 msToCycles(float ms) { |
|||
return static_cast<s64>(BASE_CLOCK_RATE * (0.001f) * ms); |
|||
} |
|||
|
|||
inline s64 msToCycles(double ms) { |
|||
return static_cast<s64>(BASE_CLOCK_RATE * (0.001) * ms); |
|||
} |
|||
|
|||
inline s64 usToCycles(float us) { |
|||
return static_cast<s64>(BASE_CLOCK_RATE * (0.000001f) * us); |
|||
} |
|||
|
|||
inline s64 usToCycles(int us) { |
|||
return (BASE_CLOCK_RATE * static_cast<s64>(us) / 1000000); |
|||
} |
|||
|
|||
s64 usToCycles(s64 us); |
|||
|
|||
s64 usToCycles(u64 us); |
|||
|
|||
inline s64 nsToCycles(float ns) { |
|||
return static_cast<s64>(BASE_CLOCK_RATE * (0.000000001f) * ns); |
|||
} |
|||
|
|||
inline s64 nsToCycles(int ns) { |
|||
return BASE_CLOCK_RATE * static_cast<s64>(ns) / 1000000000; |
|||
} |
|||
|
|||
s64 nsToCycles(s64 ns); |
|||
|
|||
s64 nsToCycles(u64 ns); |
|||
|
|||
inline u64 cyclesToNs(s64 cycles) { |
|||
return cycles * 1000000000 / BASE_CLOCK_RATE; |
|||
} |
|||
|
|||
inline s64 cyclesToUs(s64 cycles) { |
|||
return cycles * 1000000 / BASE_CLOCK_RATE; |
|||
} |
|||
|
|||
inline u64 cyclesToMs(s64 cycles) { |
|||
return cycles * 1000 / BASE_CLOCK_RATE; |
|||
} |
|||
|
|||
} // namespace CoreTiming |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue