/llvm-project/libc/test/src/__support/ |
H A D | freelist_heap_test.cpp | 30 // `free` them afterwards, so when testing the global allocator, allocations 42 void RunTest(FreeListHeap &allocator, [[maybe_unused]] size_t N); \ 46 FreeListHeap allocator(buf); \ 47 RunTest(allocator, BufferSize); \ 50 void LlvmLibcFreeListHeapTest##TestCase::RunTest(FreeListHeap &allocator, \ 56 void *ptr = allocator.allocate(ALLOC_SIZE); 64 void *ptr1 = allocator.allocate(ALLOC_SIZE); 65 void *ptr2 = allocator.allocate(ALLOC_SIZE); 82 void *ptr1 = allocator.allocate(ALLOC_SIZE); 83 allocator 91 FreeListHeap<> allocator(buf); TEST() local 247 FreeListHeap<> allocator( TEST() local [all...] |
/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_local_cache.h | 28 void Destroy(SizeClassAllocator *allocator, AllocatorGlobalStats *s) { in Destroy() 29 Drain(allocator); in Destroy() 34 void *Allocate(SizeClassAllocator *allocator, uptr class_id) { in Allocate() 39 if (UNLIKELY(!Refill(c, allocator, class_id))) in Allocate() 45 return reinterpret_cast<void *>(allocator->CompactPtrToPointer( in Allocate() 46 allocator->GetRegionBeginBySizeClass(class_id), chunk)); in Allocate() 49 void Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) { in Deallocate() 57 DrainHalfMax(c, allocator, class_id); in Deallocate() 58 CompactPtrT chunk = allocator->PointerToCompactPtr( in Deallocate() 59 allocator->GetRegionBeginBySizeClass(class_id), in Deallocate() [all …]
|
/llvm-project/clang/test/OpenMP/ |
H A D | allocate_allocator_messages.cpp | 12 #pragma omp allocate(sss) allocator // expected-error {{expected '(' after 'allocator'}} 13 #pragma omp allocate(sss) allocator(0, // expected-error {{expected ')'}} expected-error {{'omp_al… 14 #pragma omp allocate(sss) allocator(0,sss // expected-error {{expected ')'}} expected-error {{'omp… 15 #pragma omp allocate(sss) allocator(0,sss) // expected-error {{expected ')'}} expected-error {{'om… 16 #pragma omp allocate(sss) allocator(sss) // expected-error {{'omp_allocator_handle_t' type not fou… 32 #pragma omp allocate(b) allocator(sss) // expected-error {{incompatible integer to pointer conversi… 34 #pragma omp allocate(b) allocator(omp_thread_mem_alloc) // expected-warning {{allocate directive sp… 38 #pragma omp allocate(d) allocator(nullptr) 39 extern void **allocator; 41 #pragma omp allocate(d) allocator(allocator) [all …]
|
H A D | align_clause_codegen.cpp | 43 #pragma omp allocate(foo1) allocator(omp_pteam_mem_alloc) align(2) in main() 44 #pragma omp allocate(foo2) align(4) allocator(omp_cgroup_mem_alloc) in main() 45 #pragma omp allocate(foo3) align(8) allocator(omp_low_lat_mem_alloc) in main() 46 #pragma omp allocate(foo4) align(16) allocator(omp_high_bw_mem_alloc) in main() 47 #pragma omp allocate(foo5) align(32) allocator(omp_const_mem_alloc) in main() 48 #pragma omp allocate(foo6) align(64) allocator(omp_large_cap_mem_alloc) in main() 49 #pragma omp allocate(foo7) align(32) allocator(omp_thread_mem_alloc) in main() 50 #pragma omp allocate(foo8) align(16) allocator(omp_null_allocator) in main() 54 #pragma omp allocate(foo9) align(8) allocator(omp_thread_mem_alloc) in main() 64 #pragma omp allocate(bar1, bar2, bar3) align(2) allocator(MyAlloc) in main() [all …]
|
H A D | nvptx_allocate_codegen.cpp | 28 #pragma omp allocate(b) allocator(omp_default_mem_alloc) 32 #pragma omp allocate(a) allocator(omp_large_cap_mem_alloc) 33 #pragma omp allocate(b) allocator(omp_const_mem_alloc) 34 #pragma omp allocate(d, c) allocator(omp_high_bw_mem_alloc) 39 #pragma omp allocate(m) allocator(omp_low_lat_mem_alloc) 44 #pragma omp allocate(v) allocator(omp_cgroup_mem_alloc) in foo() 52 #pragma omp allocate(ns::a) allocator(omp_pteam_mem_alloc) 56 #pragma omp allocate(a) allocator(omp_thread_mem_alloc) in main() 60 #pragma omp allocate(b) allocator(omp_default_mem_alloc) in main() 61 #pragma omp allocate(c) allocator(omp_cgroup_mem_allo in main() [all...] |
/llvm-project/llvm/test/CodeGen/X86/ |
H A D | 2009-11-17-UpdateTerminator.ll | 8 …std::char_traits<char>, std::allocator<char> >,std::allocator<std::basic_string<char, std::char_tr… 9 …ntInfo,std::allocator<llvm::InlineAsm::ConstraintInfo> >" = type { %"struct.std::_Vector_base<llvm… 10 %"struct.std::_Vector_base<llvm::InlineAsm::ConstraintInfo,std::allocator<llvm::InlineAsm::Constrai… 11 …allocator<char> >,std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<ch… 12 …std::char_traits<char>, std::allocator<char> >,std::allocator<std::basic_string<char, std::char_tr… 13 %"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Alloc_hider" = type… 14 …g" = type { %"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >::_Alloc_… 15 …ntInfo,std::allocator<llvm::InlineAsm::ConstraintInfo> >" = type { %"struct.std::_Vector_base<llvm… 16 …allocator<char> >,std::allocator<std::basic_string<char, std::char_traits<char>, std::allocator<ch…
|
/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
H A D | allocate_shared.array.unbounded.pass.cpp | 48 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 0); in main() 55 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 0, 42); in main() 65 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 1); in main() 73 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 1, 42); in main() 84 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8); in main() 91 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8); in main() 100 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8); in main() 115 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8, init); in main() 123 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8, init); in main() 133 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), 8, init); in main() [all …]
|
H A D | allocate_shared.array.bounded.pass.cpp | 42 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 49 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 58 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 73 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), init); in main() 81 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), init); in main() 91 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), init); in main() 110 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 119 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 128 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>()); in main() 141 std::shared_ptr<Array> ptr = std::allocate_shared<Array>(std::allocator<Array>(), init); in main() [all …]
|
/llvm-project/libcxx/test/std/containers/sequences/deque/deque.cons/ |
H A D | size_value.pass.cpp | 38 test<int, std::allocator<int> >(0, 5); in main() 39 test<int, std::allocator<int> >(1, 10); in main() 40 test<int, std::allocator<int> >(10, 11); in main() 41 test<int, std::allocator<int> >(1023, -11); in main() 42 test<int, std::allocator<int> >(1024, 25); in main() 43 test<int, std::allocator<int> >(1025, 0); in main() 44 test<int, std::allocator<int> >(2047, 110); in main() 45 test<int, std::allocator<int> >(2048, -500); in main() 46 test<int, std::allocator<int> >(2049, 654); in main() 47 test<int, std::allocator<int> >(4095, 78); in main() [all …]
|
H A D | size.pass.cpp | 95 test<DefaultOnly, std::allocator<DefaultOnly> >(0); in main() 96 test<DefaultOnly, std::allocator<DefaultOnly> >(1); in main() 97 test<DefaultOnly, std::allocator<DefaultOnly> >(10); in main() 98 test<DefaultOnly, std::allocator<DefaultOnly> >(1023); in main() 99 test<DefaultOnly, std::allocator<DefaultOnly> >(1024); in main() 100 test<DefaultOnly, std::allocator<DefaultOnly> >(1025); in main() 101 test<DefaultOnly, std::allocator<DefaultOnly> >(2047); in main() 102 test<DefaultOnly, std::allocator<DefaultOnly> >(2048); in main() 103 test<DefaultOnly, std::allocator<DefaultOnly> >(2049); in main() 104 test<DefaultOnly, std::allocator<DefaultOnly> >(4095); in main() [all …]
|
/llvm-project/libcxx/test/libcxx/diagnostics/ |
H A D | memory.nodiscard.verify.cpp | 27 std::allocator<int> allocator; in test_allocator_traits() 28 std::allocator_traits<std::allocator<int>> allocator_traits; in test_allocator_traits() 29 allocator_traits.allocate(allocator, 1); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}} in test_allocator_traits() 30 allocator_traits.allocate(allocator, 1, nullptr); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}} in test_allocator_traits() 34 std::allocator<int> allocator; in test_allocator() 35 allocator.allocate(1); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}} in test_allocator() 37 allocator.allocate(1, nullptr); // expected-warning {{ignoring return value of function declared with 'nodiscard' attribute}} in test_allocator() 40 allocator in test_allocator() 26 std::allocator<int> allocator; test_allocator_traits() local 33 std::allocator<int> allocator; test_allocator() local [all...] |
/llvm-project/libcxx/include/__memory/ |
H A D | allocator.h | 35 class allocator; 39 // Specializing allocator<void> is deprecated, but not using it. 41 class _LIBCPP_TEMPLATE_VIS allocator<void> { 49 typedef allocator<_Up> other; 74 // allocator 77 // allocator<void> trivial in C++20. 80 class _LIBCPP_TEMPLATE_VIS allocator : private __non_trivial_if<!is_void<_Tp>::value, allocator<_Tp> > { 81 static_assert(!is_const<_Tp>::value, "std::allocator does not support const types"); 82 static_assert(!is_volatile<_Tp>::value, "std::allocator doe 33 class allocator; global() variable [all...] |
/llvm-project/clang/test/SemaCXX/ |
H A D | cxx2a-constexpr-dynalloc.cpp | 7 void *p = NEW(sizeof(int)); // expected-note {{cannot allocate untyped memory in a constant expression; use 'std::allocator<T>::allocate'}} in alloc_from_user_code() 15 template<typename T> struct allocator { struct 20 DELETE(p); // #dealloc expected-note 2{{'std::allocator<...>::deallocate' used to delete pointer to object allocated with 'new'}} in deallocate() argument 26 std::allocator<int> alloc; in alloc_via_std_allocator() 33 template<> struct std::allocator<void()> { struct in std 36 constexpr void *fn = std::allocator<void()>().allocate(); // expected-error {{constant expression}} expected-note {{in call}} argument 39 template<> struct std::allocator<Incomplete> { struct in std 42 constexpr void *incomplete = std::allocator<Incomplete>().allocate(); // expected-error {{constant expression}} expected-note {{in call}} argument 46 template<> struct std::allocator<WrongSize> { struct in std 49 constexpr void *wrong_size = std::allocator<WrongSiz argument [all...] |
H A D | declspec-allocator.cpp | 3 __declspec(allocator) int err_on_data; // expected-warning {{'allocator' attribute only applies to … 4 __declspec(allocator) struct ErrOnStruct1; // expected-warning {{place it after "struct" to apply a… 5 struct __declspec(allocator) ErrOnStruct2 {}; // expected-warning {{'allocator' attribute only appl… 6 __declspec(allocator) void err_on_ret_void(); // expected-warning {{not a pointer or reference type… 7 __declspec(allocator) int err_on_ret_int(); // expected-warning {{not a pointer or reference type}} 8 __declspec(allocator) void *accept_on_ptr1(); 9 __declspec(allocator) void *accept_on_ptr2(size_t); 10 void * __declspec(allocator) accept_on_ptr3(size_t); // expected-error {{expected unqualified-id}} 13 __declspec(allocator) Foo *accept_nonvoid_ptr(size_t);
|
/llvm-project/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/ |
H A D | string_view.alloc.pass.cpp | 35 template <typename AllocT = std::allocator<nasty_char>> 48 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 88 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 92 const AllocT allocator; in test() local 96 StrBuf ss(CS("zmt"), allocator); in test() 98 assert(ss.get_allocator() == allocator); in test() 103 StrBuf ss(csv, allocator); in test() 105 assert(ss.get_allocator() == allocator); in test() 109 const std::basic_string<CharT, TraitsT, AllocT> cs = ST("zmt", allocator); in test() 110 StrBuf ss(cs, allocator); in test() [all …]
|
H A D | string_view.mode.alloc.pass.cpp | 35 template <typename AllocT = std::allocator<nasty_char>> 49 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 127 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 131 const AllocT allocator; in test() local 135 StrBuf ss(CS("zmt"), std::ios_base::out | std::ios_base::in, allocator); in test() 137 assert(ss.get_allocator() == allocator); in test() 142 StrBuf ss(csv, std::ios_base::out | std::ios_base::in, allocator); in test() 144 assert(ss.get_allocator() == allocator); in test() 148 const std::basic_string<CharT, TraitsT, AllocT> cs = ST("zmt", allocator); in test() 149 StrBuf ss(cs, std::ios_base::out | std::ios_base::in, allocator); in test() [all …]
|
/llvm-project/libcxx/test/std/input.output/string.streams/istringstream/istringstream.cons/ |
H A D | string_view.alloc.pass.cpp | 35 template <typename AllocT = std::allocator<nasty_char>> 48 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 88 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 92 const AllocT allocator; in test() local 96 StrStream ss(CS("zmt"), allocator); in test() 98 assert(ss.rdbuf()->get_allocator() == allocator); in test() 103 StrStream ss(csv, allocator); in test() 105 assert(ss.rdbuf()->get_allocator() == allocator); in test() 109 const std::basic_string<CharT, TraitsT, AllocT> cs = ST("zmt", allocator); in test() 110 StrStream ss(cs, allocator); in test() [all …]
|
/llvm-project/libcxx/test/std/input.output/string.streams/ostringstream/ostringstream.cons/ |
H A D | string_view.alloc.pass.cpp | 35 template <typename AllocT = std::allocator<nasty_char>> 48 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 88 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 92 const AllocT allocator; in test() local 96 StrStream ss(CS("zmt"), allocator); in test() 98 assert(ss.rdbuf()->get_allocator() == allocator); in test() 103 StrStream ss(csv, allocator); in test() 105 assert(ss.rdbuf()->get_allocator() == allocator); in test() 109 const std::basic_string<CharT, TraitsT, AllocT> cs = ST("zmt", allocator); in test() 110 StrStream ss(cs, allocator); in test() [all …]
|
/llvm-project/libcxx/test/std/input.output/string.streams/stringstream/stringstream.cons/ |
H A D | string_view.alloc.pass.cpp | 35 template <typename AllocT = std::allocator<nasty_char>> 48 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 88 …ypename CharT, typename TraitsT = std::char_traits<CharT>, typename AllocT = std::allocator<CharT>> 92 const AllocT allocator; in test() local 96 StrStream ss(CS("zmt"), allocator); in test() 98 assert(ss.rdbuf()->get_allocator() == allocator); in test() 103 StrStream ss(csv, allocator); in test() 105 assert(ss.rdbuf()->get_allocator() == allocator); in test() 109 const std::basic_string<CharT, TraitsT, AllocT> cs = ST("zmt", allocator); in test() 110 StrStream ss(cs, allocator); in test() [all …]
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/portability/ |
H A D | std-allocator-const.cpp | 7 class allocator {}; class 15 template <class T, class A = std::allocator<T>> 17 template <class T, class A = std::allocator<T>> 19 template <class T, class A = std::allocator<T>> 21 template <class T, class A = std::allocator<T>> 24 template <class K, class C = std::less<K>, class A = std::allocator<K>> 26 template <class K, class C = std::less<K>, class A = std::allocator<K>> 28 template <class K, class H = std::hash<K>, class Eq = std::equal_to<K>, class A = std::allocator<K>> 30 template <class K, class H = std::hash<K>, class Eq = std::equal_to<K>, class A = std::allocator<K>> 38 template <class K, class H = std::hash<K>, class Eq = std::equal_to<K>, class A = std::allocator<K>> [all …]
|
/llvm-project/libcxx/test/std/utilities/memory/allocator.uses/allocator.uses.construction/ |
H A D | uninitialized_construct_using_allocator.pass.cpp | 28 auto* ptr = std::allocator<UsesAllocArgT>{}.allocate(1); in test() 33 std::allocator<UsesAllocArgT>{}.deallocate(ptr, 1); in test() 36 auto* ptr = std::allocator<UsesAllocLast>{}.allocate(1); in test() 40 std::allocator<UsesAllocLast>{}.deallocate(ptr, 1); in test() 43 auto* ptr = std::allocator<NotAllocatorAware>{}.allocate(1); in test() 46 std::allocator<NotAllocatorAware>{}.deallocate(ptr, 1); in test() 49 auto* ptr = std::allocator<std::pair<UsesAllocArgT, UsesAllocLast>>{}.allocate(1); in test() 56 std::allocator<std::pair<UsesAllocArgT, UsesAllocLast>>{}.deallocate(ptr, 1); in test() 59 auto* ptr = std::allocator<std::pair<UsesAllocArgT, UsesAllocLast>>{}.allocate(1); in test() 66 std::allocator<std::pair<UsesAllocArgT, UsesAllocLast>>{}.deallocate(ptr, 1); in test() [all …]
|
/llvm-project/llvm/test/CodeGen/Thumb2/ |
H A D | 2009-08-02-CoalescerBug.ll | 8 %"struct.std::CharVectorType" = type { %"struct.std::_Vector_base<char,std::allocator<char> >" } 11 …%"struct.std::_Bvector_base<std::allocator<bool> >" = type { %"struct.std::_Bvector_base<std::allo… 12 …%"struct.std::_Bvector_base<std::allocator<bool> >::_Bvector_impl" = type { %"struct.std::_Bit_con… 13 …%"struct.std::_Vector_base<char,std::allocator<char> >" = type { %"struct.std::_Vector_base<char,s… 14 %"struct.std::_Vector_base<char,std::allocator<char> >::_Vector_impl" = type { ptr, ptr, ptr } 15 …<short unsigned int,std::allocator<short unsigned int> >" = type { %"struct.std::_Vector_base<shor… 16 …%"struct.std::_Vector_base<short unsigned int,std::allocator<short unsigned int> >::_Vector_impl" … 18 …%"struct.std::vector<bool,std::allocator<bool> >" = type { %"struct.std::_Bvector_base<std::alloca… 19 …<short unsigned int,std::allocator<short unsigned int> >" = type { %"struct.std::_Vector_base<shor… 21 …allocator<bool> >", %"struct.xalanc_1_8::XalanDOMString", i8, i8, i8, i8, i8, %"struct.xalanc_1_8:… [all …]
|
/llvm-project/libcxx/test/std/utilities/memory/default.allocator/ |
H A D | allocator_types.deprecated_in_cxx17.verify.cpp | 32 …typedef std::allocator<char>::pointer Pointer; // expected-warning {{'pointer' is… in f() 33 …typedef std::allocator<char>::const_pointer ConstPointer; // expected-warning {{'const_point… in f() 34 …typedef std::allocator<char>::reference Reference; // expected-warning {{'reference' … in f() 35 …typedef std::allocator<char>::const_reference ConstReference; // expected-warning {{'const_refer… in f() 36 …typedef std::allocator<char>::rebind<int>::other Rebind; // expected-warning {{'rebind<int>… in f() 39 …typedef std::allocator<void>::pointer Pointer; // expected-warning {{'pointer' is… in f() 40 …typedef std::allocator<void>::const_pointer ConstPointer; // expected-warning {{'const_point… in f() 42 …typedef std::allocator<void>::rebind<int>::other Rebind; // expected-warning {{'rebind<int>… in f()
|
/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocator.cpp | 11 // HWAddressSanitizer allocator. 28 static Allocator allocator; variable 37 // Either just allocated by underlying allocator, but AsanChunk is not yet 38 // ready, or almost returned to undelying allocator and AsanChunk is already 72 return allocator.GetActuallyAllocatedSize(reinterpret_cast<void *>(block_)); in ActualSize() 76 return allocator.FromPrimary(reinterpret_cast<void *>(block_)); in FromSmallHeap() 120 allocator.GetStats(s); in GetAllocatorStats() 152 allocator.InitLinkerInitialized( in HwasanAllocatorInit() 165 void HwasanAllocatorLock() { allocator.ForceLock(); } in HwasanAllocatorLock() 167 void HwasanAllocatorUnlock() { allocator [all...] |
/llvm-project/llvm/test/Transforms/IndVarSimplify/ |
H A D | 2004-04-05-InvokeCastCrash.ll | 6 …allocator<int> >" = type { %"struct.__gnu_cxx::hashtable<std::pair<const llvm::Value* const, int>,… 7 …allocator<const llvm::Constant*> >" = type { %"struct.__gnu_cxx::hashtable<const llvm::Constant*,c… 8 …allocator<const llvm::Constant*> >" = type { %struct.__false_type, %struct.__false_type, %struct._… 9 …allocator<int> >" = type { %struct.__false_type, %struct.__false_type, %struct.__false_type, %stru… 17 …m::AbstractTypeUser", %"struct.std::vector<llvm::AbstractTypeUser*,std::allocator<llvm::AbstractTy… 28 …allocator<const llvm::Constant*> >", %"struct.__gnu_cxx::hash_map<const llvm::Value*,int,__gnu_cxx… 30 …Instr" = type { i16, i8, %"struct.std::vector<llvm::MachineOperand,std::allocator<llvm::MachineOpe… 36 …%"struct.std::vector<std::pair<const llvm::PassInfo*, llvm::Pass*>,std::allocator<std::pair<const … 37 …pe { ptr, ptr, ptr, i8, %"struct.std::vector<const llvm::PassInfo*,std::allocator<const llvm::Pass… 46 …type { ptr, %"struct.std::basic_string<char,std::char_traits<char>,std::allocator<char> >", %"stru… [all …]
|