Searched refs:MallocLike (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 55 MallocLike = 1<<1 | OpNewLike, // allocates; may return null enumerator 59 MallocOrCallocLike = MallocLike | CallocLike, 60 AllocLike = MallocLike | CallocLike | StrDupLike, 74 {LibFunc_malloc, {MallocLike, 1, 0, -1}}, 75 {LibFunc_valloc, {MallocLike, 1, 0, -1}}, 77 {LibFunc_ZnwjRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned int, nothrow) 80 {MallocLike, 3, 0, -1}}, 82 {LibFunc_ZnwmRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned long, nothrow) 85 {MallocLike, 3, 0, -1}}, 87 {LibFunc_ZnajRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new[](unsigned int, nothrow) [all …]
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 36 MallocLike = 1<<1 | OpNewLike, // allocates; may return null enumerator 40 AllocLike = MallocLike | CallocLike | StrDupLike, 54 {LibFunc::malloc, {MallocLike, 1, 0, -1}}, 55 {LibFunc::valloc, {MallocLike, 1, 0, -1}}, 57 {LibFunc::ZnwjRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned int, nothrow) 59 {LibFunc::ZnwmRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new(unsigned long, nothrow) 61 {LibFunc::ZnajRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new[](unsigned int, nothrow) 63 {LibFunc::ZnamRKSt9nothrow_t, {MallocLike, 2, 0, -1}}, // new[](unsigned long, nothrow) 65 {LibFunc::msvc_new_int_nothrow, {MallocLike, 2, 0, -1}}, // new(unsigned int, nothrow) 67 …{LibFunc::msvc_new_longlong_nothrow, {MallocLike, 2, 0, -1}}, // new(unsigned long long, nothrow) [all …]
|