14#include "arcane/utils/ValueConvert.h"
15#include "arcane/utils/NotImplementedException.h"
16#include "arcane/utils/PlatformUtils.h"
17#include "arcane/utils/FatalErrorException.h"
18#include "arcane/utils/TraceInfo.h"
20#include "arcane/FactoryService.h"
21#include "arcane/AbstractService.h"
23#include "arcane/utils/IProfilingService.h"
25#include "arcane/std/ProfilingInfo.h"
49class ProfPerformanceService
56 ~ProfPerformanceService()
override;
63 void switchEvent()
override;
68 void reset()
override;
73 bool m_is_initialized =
false;
81 ProfProfilingService);
86ProfPerformanceService::
87ProfPerformanceService(
const ServiceBuildInfo& sbi)
95ProfPerformanceService::
96~ProfPerformanceService()
106 struct itimerval time_val;
107 struct itimerval otime_val;
108 time_val.it_value.tv_sec = 0;
109 time_val.it_value.tv_usec = usecond;
110 time_val.it_interval.tv_sec = 0;
111 time_val.it_interval.tv_usec = 0;
112 int r = setitimer(ITIMER_PROF,&time_val,&otime_val);
114 cout <<
"** ERROR in setitimer r=" << r <<
'\n';
125bool global_is_active =
false;
127int global_timer_period = 10000;
133 static bool is_in_handler =
false;
140 cout <<
"** WARNING: ProfHandler in pending exception\n";
144 cout <<
"** In handler\n";
147 is_in_handler =
true;
150 int overflow_event[MAX_COUNTER];
151 int nb_overflow_event = 1;
152 overflow_event[0] = 0;
154 unw_word_t func_ip = 0;
155 unw_word_t offset = 0;
160 unw_init_local(&cursor, &uc);
161 int current_func = 0;
167 while (unw_step(&cursor) > 0 && current_func<3) {
170 unw_get_reg(&cursor, UNW_REG_IP, &func_ip);
172 char func_name_buf[10000];
173 unw_get_proc_name(&cursor,func_name_buf,10000,&offset);
174 cout <<
"** I=" << current_func <<
" FUNC NAME=" << func_name_buf
175 <<
" ip=" << (
void*)func_ip <<
'\n';
181 global_infos->addEvent((
void*)(func_ip+offset),overflow_event,nb_overflow_event);
183 is_in_handler =
false;
190_arcaneProfilingSigFunc(
int signum)
195 if (global_is_active){
196 arcane_prof_handler();
200 _setTimer(global_timer_period);
205_arcaneProfilingSigactionFunc(
int val, siginfo_t*,
void*)
207 _arcaneProfilingSigFunc(val);
216 if (m_is_initialized)
218 m_is_initialized =
true;
222 global_infos->setFunctionDepth(4);
223 global_infos->setNbEventBeforeGettingStack(100);
232 global_is_active =
true;
233 global_infos->startProfiling();
236 sa.sa_flags = SA_SIGINFO | SA_NODEFER;
237 sigemptyset(&sa.sa_mask);
238 sa.sa_sigaction = _arcaneProfilingSigactionFunc;
239 sigaction(SIGPROF, &sa,
nullptr);
241 _setTimer(global_timer_period);
247void ProfPerformanceService::
260 global_is_active =
false;
261 _setTimer(global_timer_period);
264 sa.sa_flags = SA_SIGINFO | SA_NODEFER;
265 sigemptyset(&sa.sa_mask);
266 sa.sa_handler = SIG_IGN;
267 sigaction(SIGPROF, &sa,
nullptr);
270 global_infos->stopProfiling();
281 global_infos->printInfos(dump_file);
291 global_infos->dumpJSON(writer);
297void ProfPerformanceService::
311 global_infos->reset();
#define ARCANE_REGISTER_APPLICATION_FACTORY(aclass, ainterface, aname)
Enregistre un service de fabrique pour la classe aclass.
AbstractService(const ServiceBuildInfo &)
Constructeur à partir d'un ServiceBuildInfo.
static bool hasPendingException()
Indique si des exceptions sont en cours.
Interface d'un service de profiling.
Interface d'un gestionnaire de timer.
Exception lorsqu'une fonction n'est pas implémentée.
Structure contenant les informations pour créer un service.
Chaîne de caractères unicode.
ITraceMng * traceMng() const
Gestionnaire de trace.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Array< Int64 > Int64Array
Tableau dynamique à une dimension d'entiers 64 bits.
Int32 Integer
Type représentant un entier.