File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ std::string DebugGetClassName(gc_oop_t obj) {
1616 return CLASS_OF (obj)->GetName ()->GetStdString ();
1717}
1818
19+ void DebugDumpMethodWithObjects (VMInvokable* method) {
20+ Disassembler::DumpMethod ((VMMethod*)method, " " , true );
21+ }
22+
1923void DebugDumpMethod (VMInvokable* method) {
2024 Disassembler::DumpMethod ((VMMethod*)method, " " , false );
2125}
Original file line number Diff line number Diff line change @@ -100,4 +100,5 @@ static inline void DebugTrace(const char* fmt, ...) {
100100std::string DebugGetClassName (vm_oop_t /* obj*/ );
101101std::string DebugGetClassName (gc_oop_t /* obj*/ );
102102void DebugDumpMethod (VMInvokable* method);
103+ void DebugDumpMethodWithObjects (VMInvokable* method);
103104void DebugDumpMethod (MethodGenerationContext* mgenc);
You can’t perform that action at this time.
0 commit comments