Skip to content

Instantly share code, notes, and snippets.

Created October 20, 2017 09:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/21673ab1df34016a06c5128910b67203 to your computer and use it in GitHub Desktop.
Save anonymous/21673ab1df34016a06c5128910b67203 to your computer and use it in GitHub Desktop.
(gdb) backtrace
#0 0xfe90646c in strlen () from /lib/libc.so.1
#1 0xfe961bce in _ndoprnt () from /lib/libc.so.1
#2 0xfe964d8f in vsnprintf () from /lib/libc.so.1
#3 0xfeaaa29a in MVM_exception_throw_adhoc_free_va (tc=0x80628b8, waste=0x8046bac,
messageFormat=0xfebd638c "Cannot find method '%s' on object of type %s", args=0x8046b8c "(\006\337\b") at src/core/exceptions.c:760
#4 0xfeaaa20d in MVM_exception_throw_adhoc_free (tc=0x80628b8, waste=0x8046bac, messageFormat=0xfebd638c "Cannot find method '%s' on object of type %s")
at src/core/exceptions.c:742
#5 0xfeb3fca5 in die_over_missing_method (tc=0x80628b8, obj=0x827b990, name=0x8d1c830) at src/6model/6model.c:58
#6 0xfeb3ff69 in MVM_6model_find_method (tc=0x80628b8, obj=0x827b990, name=0x8d1c830, res=0x85ca860) at src/6model/6model.c:107
#7 0xfeab5d46 in MVM_interp_run (tc=0x80628b8, initial_invoke=0xfeba23fa <toplevel_initial_invoke>, invoke_data=0x84ea4b0) at src/core/interp.c:1830
#8 0xfeba252d in MVM_vm_run_file (instance=0x8062340, filename=0x8047e29 "nqp.moarvm") at src/moar.c:401
#9 0x080516e3 in main (argc=3, argv=0x8047d3c) at src/main.c:257
(gdb) list 257
252 #ifndef _WIN32
253 signal(SIGPIPE, SIG_IGN);
254 #endif
255
256 if (dump) MVM_vm_dump_file(instance, input_file);
257 else MVM_vm_run_file(instance, input_file);
258
259 if (getenv("MVM_TELEMETRY_LOG") && telemeh_inited) {
260 MVM_telemetry_interval_stop(0, interval_id, "moarvm teardown");
261 MVM_telemetry_finish();
(gdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment