OSDN Git Service

android-x86/system-extras.git
6 years agoMerge "simpleperf: fix stat cmd." am: 45da8349f7
Yabin Cui [Wed, 9 Aug 2017 01:20:03 +0000 (01:20 +0000)]
Merge "simpleperf: fix stat cmd." am: 45da8349f7
am: 2c03289a32

Change-Id: I7ce9c99de10b69f404127d06ac1053a5167e3505

6 years agoMerge "simpleperf: fix stat cmd."
Yabin Cui [Wed, 9 Aug 2017 01:14:35 +0000 (01:14 +0000)]
Merge "simpleperf: fix stat cmd."
am: 45da8349f7

Change-Id: I4b659d142223167041058e4b91399d1010b7854e

6 years agoMerge "simpleperf: fix stat cmd."
Treehugger Robot [Wed, 9 Aug 2017 01:00:49 +0000 (01:00 +0000)]
Merge "simpleperf: fix stat cmd."

6 years agoMerge "simpleperf: add --exit-with-parent option in record cmd." am: d51b849069
Yabin Cui [Tue, 8 Aug 2017 23:52:56 +0000 (23:52 +0000)]
Merge "simpleperf: add --exit-with-parent option in record cmd." am: d51b849069
am: 0f325f8d08

Change-Id: I44fd103aa01261636303952fc4250abfb3a9c646

6 years agoMerge "simpleperf: add --exit-with-parent option in record cmd."
Yabin Cui [Tue, 8 Aug 2017 23:45:51 +0000 (23:45 +0000)]
Merge "simpleperf: add --exit-with-parent option in record cmd."
am: d51b849069

Change-Id: I90867cfa7195d8bc60b0c898df3d841c75610f7a

6 years agoMerge "simpleperf: add --exit-with-parent option in record cmd."
Yabin Cui [Tue, 8 Aug 2017 23:30:21 +0000 (23:30 +0000)]
Merge "simpleperf: add --exit-with-parent option in record cmd."

6 years agosimpleperf: fix stat cmd.
Yabin Cui [Tue, 8 Aug 2017 22:44:33 +0000 (15:44 -0700)]
simpleperf: fix stat cmd.

Previous CL wrongly makes kernel dump samples for stat cmd.

Bug: http://b/64489160
Test: run simpleperf_unit_test.
Change-Id: I4f5c08839e283b2361e47d61310e5161433824bb

6 years agoEnsure pstore has data before running CtsKernelConfigTestCases.
Erwin Jansen [Tue, 8 Aug 2017 22:25:27 +0000 (22:25 +0000)]
Ensure pstore has data before running CtsKernelConfigTestCases.
am: b7c25d7f0a

Change-Id: Ic83b8ba2191992d437f6842113bbea173cf3c2be

6 years agosimpleperf: add --exit-with-parent option in record cmd.
Yabin Cui [Tue, 8 Aug 2017 19:29:04 +0000 (12:29 -0700)]
simpleperf: add --exit-with-parent option in record cmd.

This makes it optional whether simpleperf stops recording
when the parent dies.

Bug: http://b/64391339
Test: run simpleperf_unit_test.
Change-Id: I0827a17d6fedbb9763347df76da9dc981fea6312

6 years agoMerge "simpleperf: allow recording events in different speed." am: f9ed7b5507
Yabin Cui [Mon, 7 Aug 2017 23:21:45 +0000 (23:21 +0000)]
Merge "simpleperf: allow recording events in different speed." am: f9ed7b5507
am: 10025e5e23

Change-Id: Ida564432343266db59fc96ded1b170d08682261a

6 years agoMerge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo." am: 6278bc9fd8
Elliott Hughes [Mon, 7 Aug 2017 23:21:33 +0000 (23:21 +0000)]
Merge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo." am: 6278bc9fd8
am: 82e81d4434

Change-Id: I98c0410e608f48071e7d63e20722aebaab964529

6 years agoMerge "simpleperf: allow recording events in different speed."
Yabin Cui [Mon, 7 Aug 2017 23:18:49 +0000 (23:18 +0000)]
Merge "simpleperf: allow recording events in different speed."
am: f9ed7b5507

Change-Id: Ia1eaafc0c7b825289014ebe362f4419957f934ec

6 years agoMerge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo."
Elliott Hughes [Mon, 7 Aug 2017 23:18:37 +0000 (23:18 +0000)]
Merge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo."
am: 6278bc9fd8

Change-Id: I4d20cf4891f041c323af90f2a92c63337606eeb9

6 years agoMerge "simpleperf: allow recording events in different speed."
Yabin Cui [Mon, 7 Aug 2017 23:11:34 +0000 (23:11 +0000)]
Merge "simpleperf: allow recording events in different speed."

6 years agoMerge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo."
Elliott Hughes [Mon, 7 Aug 2017 23:09:48 +0000 (23:09 +0000)]
Merge "Fix fd ownership issue in PrintNativeInfo/GetNativeInfo."

6 years agosimpleperf: allow recording events in different speed.
Yabin Cui [Thu, 3 Aug 2017 22:54:43 +0000 (15:54 -0700)]
simpleperf: allow recording events in different speed.

Currently record command interface only allows one sample freq or sample period
for all events. This is not convenient when recording both non tracepoint events
and tracepoint events. This CL allows setting different sample speed for
different events. For example, for "-f 1000 -e cpu-cycles -c 1 sched:sched_switch",
"-f 1000" applies to cpu-cycles, and "-c 1" applies to sched:sched_switch.

It also fixes a bug about trace-offcpu: if "-f 1000 --trace-offcpu" is used,
the sched:sched_switch is be samples with "-f 1000". But we want to sample it
with "-c 1".

Also change the order of options in the help msg of record cmd to make it more
readable. Remove -F option. Because adding it seems not useful.

Bug: http://b/37572306
Test: run simpleperf_unit_test.

Change-Id: Ifdbd27c8f9fec49aade0e0e6ce624d8114042020

6 years agoFix fd ownership issue in PrintNativeInfo/GetNativeInfo.
Elliott Hughes [Mon, 7 Aug 2017 16:30:37 +0000 (09:30 -0700)]
Fix fd ownership issue in PrintNativeInfo/GetNativeInfo.

Bug: N/A
Test: ran tests
Change-Id: I10bdeeb38404583560685bf47c58f6770fc9050b
Signed-off-by: Ivan Maidanski <i.maidanski@samsung.com>
6 years agoMerge "simpleperf: support profiling native programs in app_profiler.py." am: 51bdff6ccb
Yabin Cui [Fri, 4 Aug 2017 18:13:34 +0000 (18:13 +0000)]
Merge "simpleperf: support profiling native programs in app_profiler.py." am: 51bdff6ccb
am: 259d4159dd

Change-Id: I2a500ece1a84351057015837219f366ec9c93e50

6 years agoMerge "simpleperf: export meta info in report_sample.proto." am: 312cbae4fa
Yabin Cui [Fri, 4 Aug 2017 18:13:16 +0000 (18:13 +0000)]
Merge "simpleperf: export meta info in report_sample.proto." am: 312cbae4fa
am: 32e15649bc

Change-Id: I30da4a1768e85c53530c61c206f5c2d8b287cbad

6 years agoMerge "simpleperf: support profiling native programs in app_profiler.py."
Yabin Cui [Fri, 4 Aug 2017 18:07:36 +0000 (18:07 +0000)]
Merge "simpleperf: support profiling native programs in app_profiler.py."
am: 51bdff6ccb

Change-Id: I12717142bd37241bbb7ca3c27b4122b74c316dce

6 years agoMerge "simpleperf: export meta info in report_sample.proto."
Yabin Cui [Fri, 4 Aug 2017 18:07:19 +0000 (18:07 +0000)]
Merge "simpleperf: export meta info in report_sample.proto."
am: 312cbae4fa

Change-Id: I4000bd49bf50a2a8314087a1dbaa2740ab9837be

6 years agoMerge "simpleperf: support profiling native programs in app_profiler.py."
Yabin Cui [Fri, 4 Aug 2017 17:54:42 +0000 (17:54 +0000)]
Merge "simpleperf: support profiling native programs in app_profiler.py."

6 years agoMerge "simpleperf: export meta info in report_sample.proto."
Yabin Cui [Fri, 4 Aug 2017 17:53:53 +0000 (17:53 +0000)]
Merge "simpleperf: export meta info in report_sample.proto."

6 years agoMerge "Fix clang-tidy performance-* warnings in system/extras." am: a386d2168e
Chih-Hung Hsieh [Thu, 3 Aug 2017 23:17:31 +0000 (23:17 +0000)]
Merge "Fix clang-tidy performance-* warnings in system/extras." am: a386d2168e
am: 84d340ae12

Change-Id: I405e0c351778e84908630e282e58c9ff92fa800c

6 years agoMerge "Fix clang-tidy performance-* warnings in system/extras."
Chih-Hung Hsieh [Thu, 3 Aug 2017 23:12:03 +0000 (23:12 +0000)]
Merge "Fix clang-tidy performance-* warnings in system/extras."
am: a386d2168e

Change-Id: I0c63d2b7c1316b00c60d02faf2c08f77283ae4aa

6 years agosimpleperf: export meta info in report_sample.proto.
Yabin Cui [Mon, 31 Jul 2017 22:08:27 +0000 (15:08 -0700)]
simpleperf: export meta info in report_sample.proto.

To support perf.data generated with --trace-offcpu option,
update interface in report_sample.proto:
1. Add meta info to show all event types.
2. Add event_type_id in each sample to show which even type it belongs to.

Bug: http://b/37572306
Test: run simpleperf_unit_test.
Change-Id: I2878979ec2023904df1006ce353dcf233b6a2642

6 years agoMerge "Fix clang-tidy performance-* warnings in system/extras."
Treehugger Robot [Thu, 3 Aug 2017 23:03:13 +0000 (23:03 +0000)]
Merge "Fix clang-tidy performance-* warnings in system/extras."

6 years agosimpleperf: support profiling native programs in app_profiler.py.
Yabin Cui [Wed, 2 Aug 2017 18:55:04 +0000 (11:55 -0700)]
simpleperf: support profiling native programs in app_profiler.py.

This is a preparation of using app_profiler.py in inferno.

In app_profiler.py:
Add -np option to profile native programs like surfaceflinger.
Add -cmd option to profile command lines.
Add --arch option to set the app arch, because we don't guess the app arch
when profiling command lines.
Add corresponding tests in test.py.

Also improve the way of detecting whether the device supports trace-offcpu.

Bug: http://b/63006886
Test: run test.py.

Change-Id: Id899063d9a94beec67b22fd7710cda7a438557fb

6 years agoFix clang-tidy performance-* warnings in system/extras.
Chih-Hung Hsieh [Thu, 3 Aug 2017 21:04:06 +0000 (14:04 -0700)]
Fix clang-tidy performance-* warnings in system/extras.

* Use const reference parameter type to avoid unnecessary copy.
* Use more efficient overloaded string methods.

Bug: 30407689
Bug: 30411878
Test: build with WITH_TIDY=1
Change-Id: I558d482910c8a53c042d876848e35cdce8b8c15b

6 years agoMerge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`."...
Yabin Cui [Thu, 3 Aug 2017 03:34:02 +0000 (03:34 +0000)]
Merge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`." am: b3734fda74
am: 2fa4ff8d52

Change-Id: I7f0de9ec4d706e1654c36d21dee25d0d44b48692

6 years agoMerge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`."
Yabin Cui [Thu, 3 Aug 2017 03:29:16 +0000 (03:29 +0000)]
Merge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`."
am: b3734fda74

Change-Id: I89b8b5f864306487cbb6ca35d1adb657a0385199

6 years agoMerge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`."
Treehugger Robot [Thu, 3 Aug 2017 03:20:31 +0000 (03:20 +0000)]
Merge "simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`."

6 years agosimpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`.
Yabin Cui [Wed, 2 Aug 2017 21:00:01 +0000 (14:00 -0700)]
simpleperf: fix supporting ctrl-c when using `adb shell simpleperf xxx`.

Also fix a problem that binary_cache_builder.py tries to pull /dev/zero.

Bug: None.
Test: run test.py TestExamplePureJava.test_app_profiler_with_ctrl_c.
Change-Id: Ie99af6795bb1e81ae6e93f8b7a8907d49c048694

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4237700." am: 76163e6103
Yabin Cui [Wed, 2 Aug 2017 19:49:27 +0000 (19:49 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4237700." am: 76163e6103
am: ad151d07cd

Change-Id: Id9c2db4e2fb7dcc0bfddeeb77136cb94d8564927

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4237700."
Yabin Cui [Wed, 2 Aug 2017 19:43:38 +0000 (19:43 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4237700."
am: 76163e6103

Change-Id: Ia19468d3c21852b73d2f58816e2e0ca59500cb5c

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4237700."
Yabin Cui [Wed, 2 Aug 2017 19:31:46 +0000 (19:31 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4237700."

6 years agosimpleperf: update simpleperf prebuilts to build 4237700.
Yabin Cui [Wed, 2 Aug 2017 19:03:55 +0000 (12:03 -0700)]
simpleperf: update simpleperf prebuilts to build 4237700.

Taken from branch aosp-master.
Test: None.

Change-Id: Idcf75340fb9c0d7b8c81f64eeb2cb94a4c432224

6 years agoMerge "simpleperf: split README.md in doc directory." am: 3b7e114229
Yabin Cui [Tue, 1 Aug 2017 05:06:12 +0000 (05:06 +0000)]
Merge "simpleperf: split README.md in doc directory." am: 3b7e114229
am: 73503fb563

Change-Id: Id90f6d8a6ff01a05c3d7422deea8236913036f74

6 years agoMerge "simpleperf: split README.md in doc directory."
Yabin Cui [Tue, 1 Aug 2017 05:02:44 +0000 (05:02 +0000)]
Merge "simpleperf: split README.md in doc directory."
am: 3b7e114229

Change-Id: Ic836b59b5a8b7c5f653c87d902abb15df1258da7

6 years agoMerge "simpleperf: split README.md in doc directory."
Yabin Cui [Tue, 1 Aug 2017 04:56:38 +0000 (04:56 +0000)]
Merge "simpleperf: split README.md in doc directory."

6 years agosimpleperf: split README.md in doc directory.
Yabin Cui [Mon, 31 Jul 2017 19:47:11 +0000 (12:47 -0700)]
simpleperf: split README.md in doc directory.

Move README.md to doc directory, split inferno doc into inferno.md,
move pictures from scripts/inferno/ to doc/.
Improve the content about showing flamegraphs in README.md.

Bug: http://b/64123842
Test: No.
Change-Id: Ia3ebd0bbbda21fa816b94cd349c901b5c7713564

6 years agoMerge "simpleperf: add --show-features option in list cmd." am: 2ad09b2ffd
Yabin Cui [Mon, 31 Jul 2017 18:14:53 +0000 (18:14 +0000)]
Merge "simpleperf: add --show-features option in list cmd." am: 2ad09b2ffd
am: 1d592300f8

Change-Id: I9c6b0b7e38229c869d7acea88cb314130219f86c

6 years agoMerge "simpleperf: add --show-features option in list cmd."
Yabin Cui [Mon, 31 Jul 2017 18:11:28 +0000 (18:11 +0000)]
Merge "simpleperf: add --show-features option in list cmd."
am: 2ad09b2ffd

Change-Id: I2bce8ed7bf6ad13cadc01b92d07da661cb454a2e

6 years agoMerge "simpleperf: add --show-features option in list cmd."
Yabin Cui [Mon, 31 Jul 2017 18:06:36 +0000 (18:06 +0000)]
Merge "simpleperf: add --show-features option in list cmd."

6 years agoMerge "Update for v4.12.3 kernel headers." am: 6dfe8cde2c
Christopher Ferris [Sat, 29 Jul 2017 19:10:09 +0000 (19:10 +0000)]
Merge "Update for v4.12.3 kernel headers." am: 6dfe8cde2c
am: 2f31321c0a

Change-Id: Ieb5c6f0a781c09e013eb060a3aafe6405fa95ce8

6 years agoMerge "Update for v4.12.3 kernel headers."
Christopher Ferris [Sat, 29 Jul 2017 19:07:11 +0000 (19:07 +0000)]
Merge "Update for v4.12.3 kernel headers."
am: 6dfe8cde2c

Change-Id: I9bf957357f35b995b000770689319a508e723510

6 years agoMerge "Update for v4.12.3 kernel headers."
Christopher Ferris [Sat, 29 Jul 2017 19:03:09 +0000 (19:03 +0000)]
Merge "Update for v4.12.3 kernel headers."

6 years agosimpleperf: add --show-features option in list cmd.
Yabin Cui [Sat, 29 Jul 2017 00:58:25 +0000 (17:58 -0700)]
simpleperf: add --show-features option in list cmd.

It is used to show features supported on the device.

Bug: http://b/64147273
Test: run simpleperf_unit_test.
Change-Id: Idb7821e74d1a23f8988ef2207696114498713f47

6 years agoMerge "simpleperf add more script tests." am: 4ba39d11d3
Yabin Cui [Sat, 29 Jul 2017 00:44:53 +0000 (00:44 +0000)]
Merge "simpleperf add more script tests." am: 4ba39d11d3
am: afd073f95c

Change-Id: I670261f16bf0e6d5b98b179756a9abf96b4c1600

6 years agoMerge "simpleperf add more script tests."
Yabin Cui [Sat, 29 Jul 2017 00:42:23 +0000 (00:42 +0000)]
Merge "simpleperf add more script tests."
am: 4ba39d11d3

Change-Id: I379bf269c3a1d441ebc935e63d21ca988a5aad77

6 years agoMerge "simpleperf add more script tests."
Yabin Cui [Sat, 29 Jul 2017 00:36:20 +0000 (00:36 +0000)]
Merge "simpleperf add more script tests."

6 years agosimpleperf add more script tests.
Yabin Cui [Wed, 26 Jul 2017 19:29:44 +0000 (12:29 -0700)]
simpleperf add more script tests.

Add tests for Trace offcpu.
Add test for jni call.
Build testdata when running test.py.

Bug: http://b/63006886
Test: run test.py.

Change-Id: I5a87b8d2a8f59ead858c1b78a78c7e78847854f4

6 years agoUpdate for v4.12.3 kernel headers.
Christopher Ferris [Fri, 28 Jul 2017 16:10:56 +0000 (09:10 -0700)]
Update for v4.12.3 kernel headers.

Modify the host side linux byteorder.h to set the defines for little
endian. The new kernel headers require the defines, or there will be
compile errors.

Test: Ran all host side unit tests.
Change-Id: I05f0ea0695a56525af3cd808f2ae9a8d6b5c49db

6 years agoMerge "ext4_utils: enable uninit_bg feature for ext4 mke2fs" am: d4c959ba79
Jin Qian [Fri, 28 Jul 2017 00:55:49 +0000 (00:55 +0000)]
Merge "ext4_utils: enable uninit_bg feature for ext4 mke2fs" am: d4c959ba79
am: 0229b5829b

Change-Id: I4ee480a4bbd6f22cf8ee9c635e7b2dd661f1b18a

6 years agoMerge "ext4_utils: enable uninit_bg feature for ext4 mke2fs"
Jin Qian [Fri, 28 Jul 2017 00:53:21 +0000 (00:53 +0000)]
Merge "ext4_utils: enable uninit_bg feature for ext4 mke2fs"
am: d4c959ba79

Change-Id: Id07f9f71e63c14706e6b0e9a161c7444163efa4d

6 years agoMerge "ext4_utils: enable uninit_bg feature for ext4 mke2fs"
Treehugger Robot [Fri, 28 Jul 2017 00:49:42 +0000 (00:49 +0000)]
Merge "ext4_utils: enable uninit_bg feature for ext4 mke2fs"

6 years agoext4_utils: enable uninit_bg feature for ext4 mke2fs
Jin Qian [Thu, 27 Jul 2017 18:33:12 +0000 (11:33 -0700)]
ext4_utils: enable uninit_bg feature for ext4 mke2fs

Some devices have very slow storage media. This feature can speed
up filesystem creation time noticeably.

Bug: 63809106
Bug: 64101366
Change-Id: Id4886822035808bcb279dbf6f81989fee9cc0ace
(cherry picked from commit 794223c633652b714db804729b5f57d3689a1f91)

6 years agoMerge "simpleperf: fix README.md to show inferno pictures correctly." am: 6979f2d842
Yabin Cui [Thu, 27 Jul 2017 19:45:21 +0000 (19:45 +0000)]
Merge "simpleperf: fix README.md to show inferno pictures correctly." am: 6979f2d842
am: 752d7b23b6

Change-Id: Ic62f4dae0e260e3945ab264260588c859591da24

6 years agoMerge "simpleperf: fix README.md to show inferno pictures correctly."
Yabin Cui [Thu, 27 Jul 2017 19:37:53 +0000 (19:37 +0000)]
Merge "simpleperf: fix README.md to show inferno pictures correctly."
am: 6979f2d842

Change-Id: Ie03268117b782b8b45cc86f462763f4691702d6f

6 years agoMerge "simpleperf: fix README.md to show inferno pictures correctly."
Yabin Cui [Thu, 27 Jul 2017 19:31:11 +0000 (19:31 +0000)]
Merge "simpleperf: fix README.md to show inferno pictures correctly."

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4219235." am: 6fd3f9b50d
Yabin Cui [Thu, 27 Jul 2017 01:06:09 +0000 (01:06 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4219235." am: 6fd3f9b50d
am: c3366b69d7

Change-Id: I717593108c491cdb9eb385cbb90e0fb065f68c7c

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4219235."
Yabin Cui [Thu, 27 Jul 2017 01:02:24 +0000 (01:02 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4219235."
am: 6fd3f9b50d

Change-Id: I4c2ce4b296b2c17dbaef8b7b5676b003e9d3ee6c

6 years agoMerge "simpleperf: update simpleperf prebuilts to build 4219235."
Yabin Cui [Thu, 27 Jul 2017 00:55:00 +0000 (00:55 +0000)]
Merge "simpleperf: update simpleperf prebuilts to build 4219235."

6 years agosimpleperf: update simpleperf prebuilts to build 4219235.
Yabin Cui [Thu, 27 Jul 2017 00:05:25 +0000 (17:05 -0700)]
simpleperf: update simpleperf prebuilts to build 4219235.

Taken from branch aosp-master.

Test: none.

Change-Id: I64c9a60b4251549a22d44e9444824a439d5f4cc1

6 years agosimpleperf: fix README.md to show inferno pictures correctly.
Yabin Cui [Wed, 26 Jul 2017 18:23:06 +0000 (11:23 -0700)]
simpleperf: fix README.md to show inferno pictures correctly.

Bug: http://b/63006886
Test: none.
Change-Id: If27d2f0d91e2121c3d58c0b5451dee98934f2d40

6 years agoMerge "Fix a memory leak" am: 880d4e8574
George Burgess IV [Wed, 26 Jul 2017 06:38:30 +0000 (06:38 +0000)]
Merge "Fix a memory leak" am: 880d4e8574
am: 0b936b1028

Change-Id: If18df161319def7ac360108f86f33e5c52dcf013

6 years agoMerge "Fix a memory leak"
George Burgess IV [Wed, 26 Jul 2017 06:34:31 +0000 (06:34 +0000)]
Merge "Fix a memory leak"
am: 880d4e8574

Change-Id: I411fd53aa80fc790773b8878bdeff06a4be40b51

6 years agoMerge "Fix a memory leak"
Treehugger Robot [Wed, 26 Jul 2017 06:26:13 +0000 (06:26 +0000)]
Merge "Fix a memory leak"

6 years agoFix a memory leak
George Burgess IV [Wed, 26 Jul 2017 01:21:24 +0000 (18:21 -0700)]
Fix a memory leak

This fixes the following memory leak:
system/extras/tests/tcp_nuke_addr/tcp_nuke_addr_test.cpp:146:20:
warning: Potential memory leak [clang-analyzer-cplusplus.NewDeleteLeaks]

Namely, clang was upset that we didn't free the std::threads we new'ed
up. Immediately detach()ing them gets us the same effect.

(Context: We're trying to clean up scary-sounding warnings like this in
Android. I realize that, in this case, a leak is harmless, but...)

Bug: 27101951
Test: mma. Memory leak warning is gone. Ran the test on bullhead for
60s; seemed to work (last line of output is "60s: 246 cps, total 25432")

Change-Id: I4b6b5679430968e01ffea5bc10309a4ced04ba4e

6 years agoMerge "simpleperf: move inferno to scripts directory." am: 0cffcbee0d
Yabin Cui [Wed, 26 Jul 2017 01:00:38 +0000 (01:00 +0000)]
Merge "simpleperf: move inferno to scripts directory." am: 0cffcbee0d
am: c71a4af252

Change-Id: I0c0e5cd874fa6a7185717a794807d95b2ebb478f

6 years agoMerge "simpleperf: move inferno to scripts directory."
Yabin Cui [Wed, 26 Jul 2017 00:57:09 +0000 (00:57 +0000)]
Merge "simpleperf: move inferno to scripts directory."
am: 0cffcbee0d

Change-Id: Ieb2f1bbe13f60df81553dd320d46aded1c00cec0

6 years agoMerge "simpleperf: move inferno to scripts directory."
Treehugger Robot [Wed, 26 Jul 2017 00:48:35 +0000 (00:48 +0000)]
Merge "simpleperf: move inferno to scripts directory."

6 years agoMerge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib....
Yabin Cui [Wed, 26 Jul 2017 00:01:33 +0000 (00:01 +0000)]
Merge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib." am: be51cd0e9a
am: 19565a030b

Change-Id: I01aefea1c2d8a68b4579402b19d6db7ca0232e51

6 years agoMerge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib."
Yabin Cui [Tue, 25 Jul 2017 23:58:04 +0000 (23:58 +0000)]
Merge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib."
am: be51cd0e9a

Change-Id: I28b4d69e575ca6258bb5da2b40b7309d3c0d844b

6 years agoMerge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib."
Treehugger Robot [Tue, 25 Jul 2017 23:53:19 +0000 (23:53 +0000)]
Merge "simpleperf: support reporting trace offcpu data in simpleperf_report_lib."

6 years agosimpleperf: move inferno to scripts directory.
Yabin Cui [Tue, 25 Jul 2017 22:26:22 +0000 (15:26 -0700)]
simpleperf: move inferno to scripts directory.

This is a preparation for integrating inferno with python scripts under scripts/.

Bug: http://b/64035530
Test: run inferno.py.
Change-Id: I60ee1c30f650307aa58a038448cddb4eef43acb5

6 years agoMerge "Remove LOCAL_CLANG and clang: true" am: 481127a308
Lennart Wieboldt [Tue, 25 Jul 2017 22:20:57 +0000 (22:20 +0000)]
Merge "Remove LOCAL_CLANG and clang: true" am: 481127a308
am: 9b92a1d118

Change-Id: I6faf6bd1389d4273013ba33a029d48323b4c9e4f

6 years agoMerge "Remove LOCAL_CLANG and clang: true"
Lennart Wieboldt [Tue, 25 Jul 2017 22:17:28 +0000 (22:17 +0000)]
Merge "Remove LOCAL_CLANG and clang: true"
am: 481127a308

Change-Id: Ibbf20780454133924b3292156968b57008c3f73d

6 years agoMerge "Remove LOCAL_CLANG and clang: true"
Treehugger Robot [Tue, 25 Jul 2017 22:09:48 +0000 (22:09 +0000)]
Merge "Remove LOCAL_CLANG and clang: true"

6 years agosimpleperf: support reporting trace offcpu data in simpleperf_report_lib.
Yabin Cui [Tue, 25 Jul 2017 22:08:05 +0000 (15:08 -0700)]
simpleperf: support reporting trace offcpu data in simpleperf_report_lib.

Export python interface for reading meta info.
Change sample.period to sample time difference when trace_offcpu is true.
Add unit tests.

Bug: http://b/37572306
Test: run python test.py.
Change-Id: Ic144314184d115cc55630d3c69b66a0d8594721a

6 years agoMerge "simpleperf: use --app option in python scripts and README.md." am: 60c6d5bf60
Yabin Cui [Tue, 25 Jul 2017 18:16:58 +0000 (18:16 +0000)]
Merge "simpleperf: use --app option in python scripts and README.md." am: 60c6d5bf60
am: 3cc1d3034b

Change-Id: Iba998fbe988b40fb023a9e4a36dbbd7b9fc9767e

6 years agoMerge "simpleperf: use --app option in python scripts and README.md."
Yabin Cui [Tue, 25 Jul 2017 18:14:08 +0000 (18:14 +0000)]
Merge "simpleperf: use --app option in python scripts and README.md."
am: 60c6d5bf60

Change-Id: I2396aa3b226b1ae726a7bca98b044b45505d3d81

6 years agoMerge "simpleperf: use --app option in python scripts and README.md."
Yabin Cui [Tue, 25 Jul 2017 18:07:02 +0000 (18:07 +0000)]
Merge "simpleperf: use --app option in python scripts and README.md."

6 years agoRemove LOCAL_CLANG and clang: true
Lennart Wieboldt [Mon, 24 Jul 2017 23:18:06 +0000 (01:18 +0200)]
Remove LOCAL_CLANG and clang: true

clang is the default compiler since Android nougat

Test: mma & verified it´s still build with clang
Change-Id: Ie41a98a7d72940e8169996a7081ccec9b94aa61c
Signed-off-by: Lennart Wieboldt <lennart.1997@gmx.de>
6 years agoMerge "simpleperf: exclude kernel callchains when needed." am: fb1b7608f3
Yabin Cui [Tue, 25 Jul 2017 01:18:34 +0000 (01:18 +0000)]
Merge "simpleperf: exclude kernel callchains when needed." am: fb1b7608f3
am: 889d56b701

Change-Id: Iea25fd646e01c3f684720f441ce3a0b2b169b94e

6 years agoMerge "simpleperf: exclude kernel callchains when needed."
Yabin Cui [Tue, 25 Jul 2017 01:13:13 +0000 (01:13 +0000)]
Merge "simpleperf: exclude kernel callchains when needed."
am: fb1b7608f3

Change-Id: Ibc789d4267b8185cb86fc0fdf9f2aa7c735c87ba

6 years agoMerge "simpleperf: exclude kernel callchains when needed."
Treehugger Robot [Tue, 25 Jul 2017 01:06:26 +0000 (01:06 +0000)]
Merge "simpleperf: exclude kernel callchains when needed."

6 years agosimpleperf: exclude kernel callchains when needed.
Yabin Cui [Mon, 24 Jul 2017 21:59:46 +0000 (14:59 -0700)]
simpleperf: exclude kernel callchains when needed.

Exclude kernel callchains when users only monitor events in user space.
After this change, when users use `record -e cpu-cycles:u --trace-offcpu`,
the samples of the implicitly added sched:sched_switch event won't contain
any kernel callchain.

Bug: http://b/37572306
Test: run simpleperf_unit_test.
Change-Id: Iffcb61bac796e734825e68f847f24b4006b44360

6 years agosimpleperf: use --app option in python scripts and README.md.
Yabin Cui [Mon, 24 Jul 2017 18:45:10 +0000 (11:45 -0700)]
simpleperf: use --app option in python scripts and README.md.

Also remove app_profiler.config.

Bug: http://b/34108866
Test: run test.py.
Change-Id: If19f2249ff646b6f5266dc12ed2b9ae13f5b67e2

6 years agoMerge "Track google-benchmark API change." am: 239663cf97
Elliott Hughes [Sat, 22 Jul 2017 01:20:22 +0000 (01:20 +0000)]
Merge "Track google-benchmark API change." am: 239663cf97
am: e2feba2535

Change-Id: Ifc6f0f80dede21c6d919df0c25eb47c7fa124add

6 years agoMerge "simpleperf: adjust sample freq instead of checking it." am: 6dd50e65b7
Yabin Cui [Sat, 22 Jul 2017 01:20:05 +0000 (01:20 +0000)]
Merge "simpleperf: adjust sample freq instead of checking it." am: 6dd50e65b7
am: 3777a2d811

Change-Id: I46a0b2cea0d7ab2d64336e1fdbebfa9111393607

6 years agoMerge "Track google-benchmark API change."
Elliott Hughes [Sat, 22 Jul 2017 01:18:47 +0000 (01:18 +0000)]
Merge "Track google-benchmark API change."
am: 239663cf97

Change-Id: Id43e42b2f5fbf58c32b5d70b00e5671d7e244914

6 years agoMerge "simpleperf: adjust sample freq instead of checking it."
Yabin Cui [Sat, 22 Jul 2017 01:18:37 +0000 (01:18 +0000)]
Merge "simpleperf: adjust sample freq instead of checking it."
am: 6dd50e65b7

Change-Id: Id445154d4530b9d4a9c3d237a21e3da6f16612e2

6 years agoMerge "Track google-benchmark API change."
Treehugger Robot [Sat, 22 Jul 2017 01:14:59 +0000 (01:14 +0000)]
Merge "Track google-benchmark API change."

6 years agoMerge "simpleperf: adjust sample freq instead of checking it."
Treehugger Robot [Sat, 22 Jul 2017 01:12:16 +0000 (01:12 +0000)]
Merge "simpleperf: adjust sample freq instead of checking it."

6 years agoMerge "simpleperf: add tests for scripts." am: 07fb9f29fa
Yabin Cui [Sat, 22 Jul 2017 01:03:15 +0000 (01:03 +0000)]
Merge "simpleperf: add tests for scripts." am: 07fb9f29fa
am: a158d70c84

Change-Id: Icd2e7fed64ba89db1549215b7a976fde56252dec

6 years agoMerge "simpleperf: add tests for scripts."
Yabin Cui [Sat, 22 Jul 2017 01:00:48 +0000 (01:00 +0000)]
Merge "simpleperf: add tests for scripts."
am: 07fb9f29fa

Change-Id: Ia42dfd2f4981dd735bc2846743969aabf7d24bf9

6 years agoMerge "simpleperf: add tests for scripts."
Treehugger Robot [Sat, 22 Jul 2017 00:52:19 +0000 (00:52 +0000)]
Merge "simpleperf: add tests for scripts."

6 years agoMerge "simpleperf: support tracing offcpu time." am: 8f4bd93ba0
Yabin Cui [Sat, 22 Jul 2017 00:33:32 +0000 (00:33 +0000)]
Merge "simpleperf: support tracing offcpu time." am: 8f4bd93ba0
am: 5c8e262829

Change-Id: I10380a7b1f5538fe78e71ff4e2ce405d4121d48a

6 years agoMerge "simpleperf: support tracing offcpu time."
Yabin Cui [Sat, 22 Jul 2017 00:31:33 +0000 (00:31 +0000)]
Merge "simpleperf: support tracing offcpu time."
am: 8f4bd93ba0

Change-Id: Ia9faf209a1ae74cc920c945125f7e3a368372b44