If we want to encode IR maps in the DWARF debug line info metadata generated by LLVM, we'll need to know how to decode the .debug_line DWARF section.
Created attachment 221819 [details] Patch
Comment on attachment 221819 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221819&action=review > Source/JavaScriptCore/ftl/FTLDWARFDebugLineInfo.cpp:281 > + /* Special opcodes */ Unindent.
Super-fun!
Comment on attachment 221819 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221819&action=review r=me > Source/JavaScriptCore/ftl/FTLDWARFDebugLineInfo.cpp:42 > + T result = *(T*)program; This should be "T result = *static_cast<const T*&>(program);"
Created attachment 223128 [details] Patch
(In reply to comment #5) > Created an attachment (id=223128) [details] > Patch EWS fodder.
(In reply to comment #6) > (In reply to comment #5) > > Created an attachment (id=223128) [details] [details] > > Patch > > EWS fodder. Also forgot to fix the casts.
Comment on attachment 223128 [details] Patch r=me
Committed r163397: <http://trac.webkit.org/changeset/163397>