blob: d31561dd67e74e1523f2461323ba489e964b3b3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
//===-- symbolizer.cc -------------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This is a stub for LLVM-based symbolizer.
// This file is shared between AddressSanitizer and ThreadSanitizer
// run-time libraries. See sanitizer.h for details.
//===----------------------------------------------------------------------===//
// WARNING: Avoid using library functions - see comments in symbolizer.h.
#include "sanitizer_symbolizer.h"
// FIXME: replace library malloc/free with internal_malloc/internal_free
// that would be provided by ASan/TSan run-time libraries.
#include <stdlib.h>
namespace __sanitizer {
void AddressInfo::Clear() {
free(module);
free(function);
free(file);
}
void AddressInfoList::Clear() {
AddressInfoList *cur = this;
while (cur) {
cur->info.Clear();
AddressInfoList *nxt = cur->next;
free(cur);
cur = nxt;
}
}
AddressInfoList* SymbolizeCode(uptr address) {
AddressInfoList *list = (AddressInfoList*)malloc(sizeof(AddressInfoList));
list->next = 0;
list->info.address = address;
list->info.module = 0;
list->info.module_offset = 0;
list->info.function = 0;
list->info.file = 0;
list->info.line = 0;
list->info.column = 0;
return list;
}
} // namespace __sanitizer
|