FDO: Only support locally
The issues: - The size increase from utilizing FDO is quite large while utilizing runtime profiles in build. - By default, FDO is utilized globally if the target arch variant profiles exist. - Not all modules can show statistical significance in performance comparison, yet still suffer the size increase. The solution: - Only enable FDO locally with LOCAL_FDO_SUPPORT for modules which may benefit enough to justify the size tradeoff. Solution notes: - I've noted statistical significance in libwebcore and libskia thus far from utilizing FDO. - Analysis included sunspider, drawcanvas benchmarks, as well as gooda analysis on both arm and x86 - To support runtime profile generation in modules which have LOCAL_FDO_SUPPORT specified, BUILD_FDO_INSTRUMENTATION is still used. Otherwise, if the target arch variant profiles exist, FDO is utilized for specified modules. Change-Id: I7e95266943ff47c7d82b02e6200fd09911d0bb57
This commit is contained in:
parent
d58df2de78
commit
7c4674205c
2 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@ endif
|
|||
####################################################
|
||||
## Add FDO flags if FDO is turned on and supported
|
||||
####################################################
|
||||
ifeq ($(strip $(LOCAL_NO_FDO_SUPPORT)),)
|
||||
ifneq ($(strip $(LOCAL_FDO_SUPPORT)),)
|
||||
ifeq ($(strip $(LOCAL_IS_HOST_MODULE)),)
|
||||
LOCAL_CFLAGS += $(TARGET_FDO_CFLAGS)
|
||||
LOCAL_CPPFLAGS += $(TARGET_FDO_CFLAGS)
|
||||
|
|
|
@ -36,7 +36,7 @@ LOCAL_CC:=
|
|||
LOCAL_CXX:=
|
||||
LOCAL_CPP_EXTENSION:=
|
||||
LOCAL_NO_DEFAULT_COMPILER_FLAGS:=
|
||||
LOCAL_NO_FDO_SUPPORT :=
|
||||
LOCAL_FDO_SUPPORT:=
|
||||
LOCAL_ARM_MODE:=
|
||||
LOCAL_YACCFLAGS:=
|
||||
LOCAL_ASFLAGS:=
|
||||
|
|
Loading…
Reference in a new issue