XTL  0.1
eXtended Template Library
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
evt_vc32.cpp
Go to the documentation of this file.
1 
5 #include <cstdint>
6 #include <intrin.h>
7 
8 #pragma intrinsic(_ReturnAddress)
9 
10 
11 
12 extern "C"{
13 
14  void __xtd_EventEnter(void * addr);
15  void __xtd_EventLeave(void * addr);
16 
17  void __declspec(naked) _cdecl _penter(){
18  __asm {
19  PUSH EBP
20  MOV EBP, ESP
21  SUB ESP, __LOCAL_SIZE
22  PUSHAD
23  }
24  __xtd_EventEnter((void*)((uint32_t)_ReturnAddress() - 5));
25  __asm {
26  POPAD
27  MOV ESP, EBP
28  POP EBP
29  RET
30  }
31  }
32 
33  void __declspec(naked) _cdecl _pexit(){
34  __asm {
35  PUSH EBP
36  MOV EBP, ESP
37  SUB ESP, __LOCAL_SIZE
38  PUSHAD
39  }
40  __xtd_EventLeave((void*)((unsigned long long)_ReturnAddress() - 5));
41  __asm {
42  POPAD
43  MOV ESP, EBP
44  POP EBP
45  RET
46  }
47  }
48 }