[PATCH] D20272: [ELF] - Support of compressed input sections implemented.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Sun May 15 09:09:40 PDT 2016
ruiu added a comment.
Also please try to minimize the number of data copies. In this patch, compressed data is uncompressed to a buffer in memory and then copied to an mmap'ed output file. So the data is copied twice. It can be just once -- you can uncompress data directly to the mmap'ed output.
http://reviews.llvm.org/D20272
More information about the llvm-commits
mailing list