Changes call from AZ_TRACE to AZ_PROFILE. AZ_TRACE uses a driller bus that is going to be removed

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-12-02 17:12:25 -08:00
parent c5460c2064
commit 0b9497cd45
129 changed files with 92 additions and 261 deletions
@@ -17,7 +17,6 @@
#include <AzCore/IO/SystemFile.h>
#include <AzCore/std/chrono/chrono.h>
#include <AzCore/std/string/conversions.h>
#include <AzCore/Debug/EventTrace.h>
#include <AzCore/StringFunc/StringFunc.h>
#include <AzFramework/API/ApplicationAPI.h>
@@ -28,6 +27,8 @@
#include <AzFramework/Asset/Benchmark/BenchmarkCommands.h>
#include <AzFramework/Network/AssetProcessorConnection.h>
AZ_DECLARE_BUDGET(AzFramework);
namespace AzFramework
{
namespace AssetBenchmark
@@ -302,7 +303,7 @@ namespace AzFramework
// SystemTickBus overrides
void AssetSystemComponent::OnSystemTick()
{
AZ_TRACE_METHOD();
AZ_PROFILE_FUNCTION(AzFramework);
LegacyAssetEventBus::ExecuteQueuedEvents();
}
+4 -3
View File
@@ -16,6 +16,7 @@
#include <AzCore/Console/Console.h>
#include <AzCore/IO/IStreamer.h>
#include <AzCore/IO/SystemFile.h>
#include <AzCore/Debug/Budget.h>
#include <CryPath.h>
#include <CrySystemBus.h>
#include <CryCommon/IFont.h>
@@ -24,7 +25,6 @@
#include <AzFramework/API/ApplicationAPI_Platform.h>
#include <AzFramework/Input/Devices/Keyboard/InputDeviceKeyboard.h>
#include <AzCore/Debug/Profiler.h>
#include <AzCore/Debug/EventTrace.h>
#include <AzCore/Debug/Trace.h>
#include <AzCore/Debug/IEventLogger.h>
#include <AzCore/Interface/Interface.h>
@@ -34,6 +34,7 @@
#include <AzFramework/Entity/EntityDebugDisplayBus.h>
#include <AzCore/Interface/Interface.h>
AZ_DEFINE_BUDGET(CrySystem);
#if defined(AZ_RESTRICTED_PLATFORM)
#undef AZ_RESTRICTED_SECTION
@@ -525,7 +526,7 @@ void CSystem::SleepIfNeeded()
int sleepMS = (int)(1000.0f * sleepTime + 0.5f);
if (sleepMS > 0)
{
AZ_PROFILE_FUNCTION(System);
AZ_PROFILE_FUNCTION(CrySystem);
Sleep(sleepMS);
}
@@ -564,7 +565,7 @@ bool CSystem::UpdatePreTickBus(int updateFlags, int nPauseMode)
_mm_setcsr(_mm_getcsr() & ~0x280 | (g_cvars.sys_float_exceptions > 0 ? 0 : 0x280));
#endif //WIN32
AZ_TRACE_METHOD();
AZ_PROFILE_FUNCTION(CrySystem);
#ifndef EXCLUDE_UPDATE_ON_CONSOLE
if (m_pUserCallback)
@@ -9,7 +9,8 @@
#include "CrySystem_precompiled.h"
#include "SystemEventDispatcher.h"
#include <AzCore/Debug/EventTrace.h>
AZ_DECLARE_BUDGET(CrySystem);
CSystemEventDispatcher::CSystemEventDispatcher()
: m_listeners(0)
@@ -72,7 +73,7 @@ void CSystemEventDispatcher::OnSystemEvent(ESystemEvent event, UINT_PTR wparam,
//////////////////////////////////////////////////////////////////////////
void CSystemEventDispatcher::Update()
{
AZ_TRACE_METHOD();
AZ_PROFILE_FUNCTION(CrySystem);
assert(gEnv && gEnv->mMainThreadId == CryGetCurrentThreadId());
SEventParams params;