Skip to content

Commit

Permalink
Merge pull request #174 from marcelofg55/profiling_data
Browse files Browse the repository at this point in the history
Profiling support
  • Loading branch information
BastiaanOlij authored Nov 27, 2018
2 parents f447635 + 209dd56 commit 6fb835c
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
2 changes: 2 additions & 0 deletions include/core/GodotGlobal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class Godot {
static void nativescript_init(void *handle);
static void nativescript_terminate(void *handle);

static void gdnative_profiling_add_data(const char *p_signature, uint64_t p_time);

template <class... Args>
static void print(const String &fmt, Args... values) {
print(fmt.format(Array::make(values...)));
Expand Down
34 changes: 34 additions & 0 deletions include/core/GodotProfiling.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#ifndef GODOT_PROFILING_HPP
#define GODOT_PROFILING_HPP

#include "OS.hpp"


namespace godot {

class FunctionProfiling {
char signature[1024];
uint64_t ticks;

public:
FunctionProfiling(const char *p_function, const int p_line) {
snprintf(signature, 1024, "::%d::%s", p_line, p_function);
ticks = OS::get_singleton()->get_ticks_usec();
}
~FunctionProfiling() {
uint64_t t = OS::get_singleton()->get_ticks_usec() - ticks;
if (t > 0) {
Godot::gdnative_profiling_add_data(signature, t);
}
}
};

}

#ifdef DEBUG_ENABLED
#define GODOT_PROFILING_FUNCTION FunctionProfiling __function_profiling(__FUNCTION__, __LINE__);
#else
#define GODOT_PROFILING_FUNCTION
#endif

#endif
4 changes: 4 additions & 0 deletions src/core/GodotGlobal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@ void Godot::gdnative_terminate(godot_gdnative_terminate_options *options) {
// reserved for future use.
}

void Godot::gdnative_profiling_add_data(const char *p_signature, uint64_t p_time) {
godot::nativescript_1_1_api->godot_nativescript_profiling_add_data(p_signature, p_time);
}

void Godot::nativescript_init(void *handle) {
godot::_RegisterState::nativescript_handle = handle;

Expand Down

0 comments on commit 6fb835c

Please sign in to comment.