Searched refs:UnwindCursor (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/libunwind/src/
H A DUnwind-seh.cpp29 #include "UnwindCursor.hpp"
453 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_x86_64> *>(cursor))
454 UnwindCursor<LocalAddressSpace, Registers_x86_64>(
460 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm> *>(cursor))
461 UnwindCursor<LocalAddressSpace, Registers_arm>(
467 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm64> *>(cursor))
468 UnwindCursor<LocalAddressSpace, Registers_arm64>(
480 return reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_x86_64> *>(cursor)->getDispatcherContext();
482 return reinterpret_cast<UnwindCursor<LocalAddressSpace, Registers_arm> *>(cursor)->getDispatcherContext();
484 return reinterpret_cast<UnwindCursor<LocalAddressSpac
[all...]
H A DUnwindCursor.hpp1 //===------------------------- UnwindCursor.hpp ---------------------------===//
455 /// \c UnwindCursor contains all state (including all register values) during
458 class UnwindCursor : public AbstractUnwindCursor { class in namespace:libunwind
461 UnwindCursor(unw_context_t *context, A &as);
462 UnwindCursor(CONTEXT *context, A &as);
463 UnwindCursor(A &as, void *threadArg);
464 virtual ~UnwindCursor() {}
487 static void *operator new(size_t, UnwindCursor<A, R> *p) { return p; }
529 UnwindCursor<A, R>::UnwindCursor(unw_context_ function in class:libunwind::UnwindCursor
630 UnwindCursor<A, R>::UnwindCursor(CONTEXT *context, A &as) function in class:libunwind::UnwindCursor
878 class UnwindCursor : public AbstractUnwindCursor{ class in namespace:libunwind
1174 UnwindCursor<A, R>::UnwindCursor(unw_context_t *context, A &as) function in class:libunwind::UnwindCursor
1183 UnwindCursor<A, R>::UnwindCursor(A &as, void *) function in class:libunwind::UnwindCursor
[all...]
H A Dlibunwind.cpp22 #include "UnwindCursor.hpp"
66 // Use "placement new" to allocate UnwindCursor in the cursor buffer.
67 new (reinterpret_cast<UnwindCursor<LocalAddressSpace, REGISTER_KIND> *>(cursor))
68 UnwindCursor<LocalAddressSpace, REGISTER_KIND>(

Completed in 104 milliseconds