eaeed26211d7c858f29a4c8ea296481f7543a2ec
[oota-llvm.git] / lib / ExecutionEngine / IntelJITEvents / IntelJITEventListener.cpp
1 //===-- IntelJITEventListener.cpp - Tell Intel profiler about JITed code --===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines a JITEventListener object to tell Intel(R) VTune(TM)
11 // Amplifier XE 2011 about JITted functions.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/Config/config.h"
16 #include "IntelJITEventsWrapper.h"
17 #include "llvm/ADT/DenseMap.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/DebugInfo/DIContext.h"
20 #include "llvm/DebugInfo/DWARF/DWARFContext.h"
21 #include "llvm/ExecutionEngine/JITEventListener.h"
22 #include "llvm/IR/DebugInfo.h"
23 #include "llvm/IR/Function.h"
24 #include "llvm/IR/Metadata.h"
25 #include "llvm/IR/ValueHandle.h"
26 #include "llvm/Object/ObjectFile.h"
27 #include "llvm/Object/SymbolSize.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/Errno.h"
30 #include "llvm/Support/raw_ostream.h"
31
32 using namespace llvm;
33 using namespace llvm::object;
34
35 #define DEBUG_TYPE "amplifier-jit-event-listener"
36
37 namespace {
38
39 class IntelJITEventListener : public JITEventListener {
40   typedef DenseMap<void*, unsigned int> MethodIDMap;
41
42   std::unique_ptr<IntelJITEventsWrapper> Wrapper;
43   MethodIDMap MethodIDs;
44
45   typedef SmallVector<const void *, 64> MethodAddressVector;
46   typedef DenseMap<const void *, MethodAddressVector>  ObjectMap;
47
48   ObjectMap  LoadedObjectMap;
49   std::map<const char*, OwningBinary<ObjectFile>> DebugObjects;
50
51 public:
52   IntelJITEventListener(IntelJITEventsWrapper* libraryWrapper) {
53       Wrapper.reset(libraryWrapper);
54   }
55
56   ~IntelJITEventListener() {
57   }
58
59   void NotifyObjectEmitted(const ObjectFile &Obj,
60                            const RuntimeDyld::LoadedObjectInfo &L) override;
61
62   void NotifyFreeingObject(const ObjectFile &Obj) override;
63 };
64
65 static LineNumberInfo DILineInfoToIntelJITFormat(uintptr_t StartAddress,
66                                                  uintptr_t Address,
67                                                  DILineInfo Line) {
68   LineNumberInfo Result;
69
70   Result.Offset = Address - StartAddress;
71   Result.LineNumber = Line.Line;
72
73   return Result;
74 }
75
76 static iJIT_Method_Load FunctionDescToIntelJITFormat(
77     IntelJITEventsWrapper& Wrapper,
78     const char* FnName,
79     uintptr_t FnStart,
80     size_t FnSize) {
81   iJIT_Method_Load Result;
82   memset(&Result, 0, sizeof(iJIT_Method_Load));
83
84   Result.method_id = Wrapper.iJIT_GetNewMethodID();
85   Result.method_name = const_cast<char*>(FnName);
86   Result.method_load_address = reinterpret_cast<void*>(FnStart);
87   Result.method_size = FnSize;
88
89   Result.class_id = 0;
90   Result.class_file_name = NULL;
91   Result.user_data = NULL;
92   Result.user_data_size = 0;
93   Result.env = iJDE_JittingAPI;
94
95   return Result;
96 }
97
98 void IntelJITEventListener::NotifyObjectEmitted(
99                                        const ObjectFile &Obj,
100                                        const RuntimeDyld::LoadedObjectInfo &L) {
101
102   OwningBinary<ObjectFile> DebugObjOwner = L.getObjectForDebug(Obj);
103   const ObjectFile &DebugObj = *DebugObjOwner.getBinary();
104
105   // Get the address of the object image for use as a unique identifier
106   const void* ObjData = DebugObj.getData().data();
107   DIContext* Context = new DWARFContextInMemory(DebugObj);
108   MethodAddressVector Functions;
109
110   // Use symbol info to iterate functions in the object.
111   for (const std::pair<SymbolRef, uint64_t> &P : computeSymbolSizes(DebugObj)) {
112     SymbolRef Sym = P.first;
113     std::vector<LineNumberInfo> LineInfo;
114     std::string SourceFileName;
115
116     if (Sym.getType() == SymbolRef::ST_Function) {
117       ErrorOr<StringRef> Name = Sym.getName();
118       if (!Name)
119         continue;
120
121       ErrorOr<uint64_t> AddrOrErr = Sym.getAddress();
122       if (AddrOrErr.getError())
123         continue;
124       uint64_t Addr = *AddrOrErr;
125       uint64_t Size = P.second;
126
127       // Record this address in a local vector
128       Functions.push_back((void*)Addr);
129
130       // Build the function loaded notification message
131       iJIT_Method_Load FunctionMessage =
132           FunctionDescToIntelJITFormat(*Wrapper, Name->data(), Addr, Size);
133       DILineInfoTable Lines = Context->getLineInfoForAddressRange(Addr, Size);
134       DILineInfoTable::iterator Begin = Lines.begin();
135       DILineInfoTable::iterator End = Lines.end();
136       for (DILineInfoTable::iterator It = Begin; It != End; ++It) {
137         LineInfo.push_back(
138             DILineInfoToIntelJITFormat((uintptr_t)Addr, It->first, It->second));
139       }
140       if (LineInfo.size() == 0) {
141         FunctionMessage.source_file_name = 0;
142         FunctionMessage.line_number_size = 0;
143         FunctionMessage.line_number_table = 0;
144       } else {
145         // Source line information for the address range is provided as
146         // a code offset for the start of the corresponding sub-range and
147         // a source line. JIT API treats offsets in LineNumberInfo structures
148         // as the end of the corresponding code region. The start of the code
149         // is taken from the previous element. Need to shift the elements.
150
151         LineNumberInfo last = LineInfo.back();
152         last.Offset = FunctionMessage.method_size;
153         LineInfo.push_back(last);
154         for (size_t i = LineInfo.size() - 2; i > 0; --i)
155           LineInfo[i].LineNumber = LineInfo[i - 1].LineNumber;
156
157         SourceFileName = Lines.front().second.FileName;
158         FunctionMessage.source_file_name =
159             const_cast<char *>(SourceFileName.c_str());
160         FunctionMessage.line_number_size = LineInfo.size();
161         FunctionMessage.line_number_table = &*LineInfo.begin();
162       }
163
164       Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_LOAD_FINISHED,
165                                 &FunctionMessage);
166       MethodIDs[(void*)Addr] = FunctionMessage.method_id;
167     }
168   }
169
170   // To support object unload notification, we need to keep a list of
171   // registered function addresses for each loaded object.  We will
172   // use the MethodIDs map to get the registered ID for each function.
173   LoadedObjectMap[ObjData] = Functions;
174   DebugObjects[Obj.getData().data()] = std::move(DebugObjOwner);
175 }
176
177 void IntelJITEventListener::NotifyFreeingObject(const ObjectFile &Obj) {
178   // This object may not have been registered with the listener. If it wasn't,
179   // bail out.
180   if (DebugObjects.find(Obj.getData().data()) == DebugObjects.end())
181     return;
182
183   // Get the address of the object image for use as a unique identifier
184   const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary();
185   const void* ObjData = DebugObj.getData().data();
186
187   // Get the object's function list from LoadedObjectMap
188   ObjectMap::iterator OI = LoadedObjectMap.find(ObjData);
189   if (OI == LoadedObjectMap.end())
190     return;
191   MethodAddressVector& Functions = OI->second;
192
193   // Walk the function list, unregistering each function
194   for (MethodAddressVector::iterator FI = Functions.begin(),
195                                      FE = Functions.end();
196        FI != FE;
197        ++FI) {
198     void* FnStart = const_cast<void*>(*FI);
199     MethodIDMap::iterator MI = MethodIDs.find(FnStart);
200     if (MI != MethodIDs.end()) {
201       Wrapper->iJIT_NotifyEvent(iJVM_EVENT_TYPE_METHOD_UNLOAD_START,
202                                 &MI->second);
203       MethodIDs.erase(MI);
204     }
205   }
206
207   // Erase the object from LoadedObjectMap
208   LoadedObjectMap.erase(OI);
209   DebugObjects.erase(Obj.getData().data());
210 }
211
212 }  // anonymous namespace.
213
214 namespace llvm {
215 JITEventListener *JITEventListener::createIntelJITEventListener() {
216   return new IntelJITEventListener(new IntelJITEventsWrapper);
217 }
218
219 // for testing
220 JITEventListener *JITEventListener::createIntelJITEventListener(
221                                       IntelJITEventsWrapper* TestImpl) {
222   return new IntelJITEventListener(TestImpl);
223 }
224
225 } // namespace llvm
226