OSDN Git Service

Add a flag to the LLVMContext to disable name for Value other than GlobalValue
authorMehdi Amini <mehdi.amini@apple.com>
Thu, 10 Mar 2016 01:28:54 +0000 (01:28 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Thu, 10 Mar 2016 01:28:54 +0000 (01:28 +0000)
commit2de9927963f76466d0a1836479a6732ee133a50c
tree5ef280d46e6e1f001720945cc424f006b871ac07
parentd18bb9e06b6b95ecddcd726c4661f8fa5742975a
Add a flag to the LLVMContext to disable name for Value other than GlobalValue

Summary:
This is intended to be a performance flag, on the same level as clang
cc1 option "--disable-free". LLVM will never initialize it by default,
it will be up to the client creating the LLVMContext to request this
behavior. Clang will do it by default in Release build (just like
--disable-free).

"opt" and "llc" can opt-in using -disable-named-value command line
option.

When performing LTO on llvm-tblgen, the initial merging of IR peaks
at 92MB without this patch, and 86MB after this patch,setNameImpl()
drops from 6.5MB to 0.5MB.
The total link time goes from ~29.5s to ~27.8s.

Compared to a compile-time flag (like the IRBuilder one), it performs
very close. I profiled on SROA and obtain these results:

 420ms with IRBuilder that preserve name
 372ms with IRBuilder that strip name
 375ms with IRBuilder that preserve name, and a runtime flag to strip

Reviewers: chandlerc, dexonsmith, bogner

Subscribers: joker.eph, llvm-commits

Differential Revision: http://reviews.llvm.org/D17946

From: Mehdi Amini <mehdi.amini@apple.com>

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@263086 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/IR/LLVMContext.h
lib/AsmParser/LLParser.cpp
lib/IR/LLVMContext.cpp
lib/IR/LLVMContextImpl.h
lib/IR/Value.cpp
lib/LTO/LTOCodeGenerator.cpp
lib/LTO/ThinLTOCodeGenerator.cpp
test/Feature/strip_names.ll [new file with mode: 0644]
tools/llc/llc.cpp
tools/opt/opt.cpp