reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/API/SBDefines.h
   51 class LLDB_API SBInstructionList;
tools/lldb/tools/lldb-vscode/VSCodeForward.h
   33 class SBInstructionList;

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
 4321 SWIGINTERN PyObject *lldb_SBInstructionList___str__(lldb::SBInstructionList *self){
32487   lldb::SBInstructionList result;
32535   lldb::SBInstructionList result;
34128   lldb::SBInstructionList *result = 0 ;
34133     result = (lldb::SBInstructionList *)new lldb::SBInstructionList();
34145   lldb::SBInstructionList *arg1 = 0 ;
34149   lldb::SBInstructionList *result = 0 ;
34162     result = (lldb::SBInstructionList *)new lldb::SBInstructionList((lldb::SBInstructionList const &)*arg1);
34207   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34232   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34258   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34284   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34310   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34345   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34404   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34429   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34471   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34513   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34605   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34643   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
34681   lldb::SBInstructionList *arg1 = (lldb::SBInstructionList *) 0 ;
50969   lldb::SBInstructionList result;
51017   lldb::SBInstructionList result;
58969   lldb::SBInstructionList result;
59026   lldb::SBInstructionList result;
59148   lldb::SBInstructionList result;
59220   lldb::SBInstructionList result;
tools/lldb/include/lldb/API/SBFunction.h
   38   lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
   40   lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
tools/lldb/include/lldb/API/SBInstructionList.h
   22   SBInstructionList(const SBInstructionList &rhs);
   24   const SBInstructionList &operator=(const SBInstructionList &rhs);
   24   const SBInstructionList &operator=(const SBInstructionList &rhs);
tools/lldb/include/lldb/API/SBSymbol.h
   39   lldb::SBInstructionList GetInstructions(lldb::SBTarget target);
   41   lldb::SBInstructionList GetInstructions(lldb::SBTarget target,
tools/lldb/include/lldb/API/SBTarget.h
  775   lldb::SBInstructionList ReadInstructions(lldb::SBAddress base_addr,
  778   lldb::SBInstructionList ReadInstructions(lldb::SBAddress base_addr,
  782   lldb::SBInstructionList GetInstructions(lldb::SBAddress base_addr,
  788   lldb::SBInstructionList GetInstructionsWithFlavor(lldb::SBAddress base_addr,
  793   lldb::SBInstructionList GetInstructions(lldb::addr_t base_addr,
  796   lldb::SBInstructionList GetInstructionsWithFlavor(lldb::addr_t base_addr,
tools/lldb/include/lldb/Utility/ReproducerInstrumentation.h
   31 inline void stringify_append(llvm::raw_string_ostream &ss, const T &t) {
   47 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head) {
   52 inline void stringify_helper(llvm::raw_string_ostream &ss, const Head &head,
   53                              const Tail &... tail) {
   59 template <typename... Ts> inline std::string stringify_args(const Ts &... ts) {
  201   template <typename T> T *GetObjectForIndex(unsigned idx) {
  208   template <typename T> void AddObjectForIndex(unsigned idx, T *object) {
  249       typename std::conditional<std::is_fundamental<T>::value,
  285   template <typename T> void HandleReplayResult(const T &t) {
  287     if (std::is_fundamental<T>::value)
  290     m_index_to_object.AddObjectForIndex(result, new T(t));
  294   template <typename T> void HandleReplayResult(T *t) {
  296     if (std::is_fundamental<T>::value)
  375     static Result doit(Deserializer &deserializer,
  376                        Result (*f)(Deserialized..., Head, Tail...),
  379           template deserialized<Result, Deserialized..., Head>::doit(
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  387     static Result doit(Deserializer &deserializer, Result (*f)(Deserialized...),
  404   DefaultReplayer(Result (*f)(Args...)) : Replayer(), f(f) {}
  408         DeserializationHelper<Args...>::template deserialized<Result>::doit(
  412   Result (*f)(Args...);
  501   static Class *doit(Args... args) { return new Class(args...); }
  501   static Class *doit(Args... args) { return new Class(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  510     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  517     static Result doit(Class *c, Args... args) { return (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  524     static void doit(Class *c, Args... args) { (c->*m)(args...); }
  535   template <typename T> unsigned GetIndexForObject(T *t) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  552   void SerializeAll(const Head &head, const Tail &... tail) {
  563   template <typename T> void Serialize(T *t) {
  564     if (std::is_fundamental<T>::value) {
  575   template <typename T> void Serialize(T &t) {
  576     if (std::is_fundamental<T>::value) {
  577       m_stream.write(reinterpret_cast<const char *>(&t), sizeof(T));
  636   void Record(Serializer &serializer, Registry &registry, Result (*f)(FArgs...),
  637               const RArgs &... args) {
  652             typename std::remove_reference<Result>::type>::type>::value) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  683   template <typename Result> Result RecordResult(Result &&r) {
  690     return std::forward<Result>(r);
tools/lldb/source/API/SBFunction.cpp
  117 SBInstructionList SBFunction::GetInstructions(SBTarget target) {
  124 SBInstructionList SBFunction::GetInstructions(SBTarget target,
  129   SBInstructionList sb_instructions;
tools/lldb/source/API/SBInstructionList.cpp
   28 SBInstructionList::SBInstructionList(const SBInstructionList &rhs)
   34 const SBInstructionList &SBInstructionList::
   35 operator=(const SBInstructionList &rhs) {
  206 void RegisterMethods<SBInstructionList>(Registry &R) {
tools/lldb/source/API/SBReproducer.cpp
   62   RegisterMethods<SBInstructionList>(R);
tools/lldb/source/API/SBSymbol.cpp
  115 SBInstructionList SBSymbol::GetInstructions(SBTarget target) {
  122 SBInstructionList SBSymbol::GetInstructions(SBTarget target,
  127   SBInstructionList sb_instructions;
tools/lldb/source/API/SBTarget.cpp
 2015 lldb::SBInstructionList SBTarget::ReadInstructions(lldb::SBAddress base_addr,
 2023 lldb::SBInstructionList SBTarget::ReadInstructions(lldb::SBAddress base_addr,
 2030   SBInstructionList sb_instructions;
 2055 lldb::SBInstructionList SBTarget::GetInstructions(lldb::SBAddress base_addr,
 2065 lldb::SBInstructionList
 2074   SBInstructionList sb_instructions;
 2093 lldb::SBInstructionList SBTarget::GetInstructions(lldb::addr_t base_addr,
 2103 lldb::SBInstructionList
tools/lldb/tools/lldb-vscode/JSONUtils.cpp
  484   lldb::SBInstructionList insts;
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   73     forward(typename std::remove_reference<_Tp>::type& __t) noexcept
   83     constexpr _Tp&&
   84     forward(typename std::remove_reference<_Tp>::type&& __t) noexcept
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  594     : public __or_<is_arithmetic<_Tp>, is_void<_Tp>,
  595 		   is_null_pointer<_Tp>>::type
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1629     { typedef _Tp   type; };
 1633     { typedef _Tp   type; };
 1979     { typedef _Tp     type; };
 1983     { typedef _Up     type; };
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>
 1988     : public __remove_pointer_helper<_Tp, typename remove_cv<_Tp>::type>