How can i store the map between LLVM IR instruction and line of source code if llvm-gcc or dragonegg are used?
Asked
Active
Viewed 1,880 times
1 Answers
3
Inside LLVM IR debug information should be used for this purpose. See http://llvm.org/docs/SourceLevelDebugging.html for more info.
llvm-gcc (and DragonEgg) will generate everything for you provided that the same information is available on GIMPLE level.

Anton Korobeynikov
- 9,074
- 25
- 28