]> granicus.if.org Git - llvm/commit
Do not inline hot callsites for samplepgo in thinlto compile phase.
authorDehao Chen <dehao@google.com>
Tue, 21 Mar 2017 19:55:36 +0000 (19:55 +0000)
committerDehao Chen <dehao@google.com>
Tue, 21 Mar 2017 19:55:36 +0000 (19:55 +0000)
commit287fe256411e5506aaf927596b387fc927a33372
tree5b64a48be0520c71c923097aa492776010789db7
parent700f6ad1423e78936c8250a4e18fe8aeb0f75927
Do not inline hot callsites for samplepgo in thinlto compile phase.

Summary: Because SamplePGO passes will be invoked twice in ThinLTO build: once at compile phase, the other at backend. We want to make sure the IR at the 2nd phase matches the hot part in profile, thus we do not want to inline hot callsites in the first phase.

Reviewers: tejohnson, eraman

Reviewed By: tejohnson

Subscribers: mehdi_amini, llvm-commits, Prazek

Differential Revision: https://reviews.llvm.org/D31201

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298428 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Transforms/IPO.h
lib/Analysis/InlineCost.cpp
lib/Transforms/IPO/InlineSimple.cpp
tools/bugpoint/bugpoint.cpp
tools/opt/opt.cpp