aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/tcmalloc/tcmalloc/libc_override_redefine.h
blob: 0a9937c05b0f943b8eb9070c531a8bdbb1dad7d7 (plain) (blame)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Copyright 2019 The TCMalloc Authors 
// 
// Licensed under the Apache License, Version 2.0 (the "License"); 
// you may not use this file except in compliance with the License. 
// You may obtain a copy of the License at 
// 
//     https://www.apache.org/licenses/LICENSE-2.0 
// 
// Unless required by applicable law or agreed to in writing, software 
// distributed under the License is distributed on an "AS IS" BASIS, 
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
// See the License for the specific language governing permissions and 
// limitations under the License. 
// 
// Used on systems that don't have their own definition of 
// malloc/new/etc.  (Typically this will be a windows msvcrt.dll that 
// has been edited to remove the definitions.)  We can just define our 
// own as normal functions. 
// 
// This should also work on systems were all the malloc routines are 
// defined as weak symbols, and there's no support for aliasing. 
 
#ifndef TCMALLOC_LIBC_OVERRIDE_REDEFINE_H_ 
#define TCMALLOC_LIBC_OVERRIDE_REDEFINE_H_ 
 
#include <cstddef> 
#include <new> 
 
#include "tcmalloc/tcmalloc.h" 
 
void* operator new(size_t size) { return TCMallocInternalNew(size); } 
void operator delete(void* p) noexcept { TCMallocInternalDelete(p); } 
void* operator new[](size_t size) { return TCMallocInternalNewArray(size); } 
void operator delete[](void* p) noexcept { TCMallocInternalDeleteArray(p); } 
void* operator new(size_t size, const std::nothrow_t& nt) noexcept { 
  return TCMallocInternalNewNothrow(size, nt); 
} 
void* operator new[](size_t size, const std::nothrow_t& nt) noexcept { 
  return TCMallocInternalNewArrayNothrow(size, nt); 
} 
void operator delete(void* ptr, const std::nothrow_t& nt) noexcept { 
  return TCMallocInternalDeleteNothrow(ptr, nt); 
} 
void operator delete[](void* ptr, const std::nothrow_t& nt) noexcept { 
  return TCMallocInternalDeleteArrayNothrow(ptr, nt); 
} 

extern "C" { 
void* malloc(size_t s) { return TCMallocInternalMalloc(s); }
void* calloc(size_t n, size_t s) { return TCMallocInternalCalloc(n, s); }
void* realloc(void* p, size_t s) { return TCMallocInternalRealloc(p, s); }
void free(void* p) { TCMallocInternalFree(p); }
void* memalign(size_t a, size_t s) { return TCMallocInternalMemalign(a, s); }
int posix_memalign(void** r, size_t a, size_t s) {
  return TCMallocInternalPosixMemalign(r, a, s);
}
size_t malloc_usable_size(void* p) { return TCMallocInternalMallocSize(p); }

// tcmalloc extension
void sdallocx(void* p, size_t s, int flags) noexcept {
  TCMallocInternalSdallocx(p, s, flags);
}

#if defined(__GLIBC__) || defined(__NEWLIB__)
// SunOS extension
void cfree(void* p) { TCMallocInternalCfree(p); }
#endif

#if defined(OS_MACOSX) || defined(__BIONIC__) || defined(__GLIBC__) || \
    defined(__NEWLIB__) || defined(__UCLIBC__)
// Obsolete memalign
void* valloc(size_t s) { return TCMallocInternalValloc(s); }
#endif

#if defined(__BIONIC__) || defined(__GLIBC__) || defined(__NEWLIB__)
// Obsolete memalign
void* pvalloc(size_t s) { return TCMallocInternalPvalloc(s); }
#endif

#if defined(__GLIBC__) || defined(__NEWLIB__) || defined(__UCLIBC__)
void malloc_stats(void) { TCMallocInternalMallocStats(); }
#endif

#if defined(__BIONIC__) || defined(__GLIBC__) || defined(__NEWLIB__) || \
    defined(__UCLIBC__)
int mallopt(int cmd, int v) { return TCMallocInternalMallOpt(cmd, v); }
#endif

#ifdef TCMALLOC_HAVE_STRUCT_MALLINFO
struct mallinfo mallinfo(void) {
  return TCMallocInternalMallocInfo(); 
} 
#endif 

#if defined(__GLIBC__)
size_t malloc_size(void* p) { return TCMallocInternalMallocSize(p); }
#endif
}  // extern "C" 
 
#endif  // TCMALLOC_LIBC_OVERRIDE_REDEFINE_H_