[Lldb-commits] [PATCH] D13812: Increase default memory cache line size for android

Tamas Berghammer via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 19 05:16:13 PDT 2015


tberghammer added a comment.

I agree with Greg that the Platform should hand out the value but I would suggest to create a Platform::GetMemoryCacheLineSize() function what will be overwritten in PlatfromAndroid.

> ADB packets have a fixed size of 4k.


It is not true. ADB packets have a maximum size of 4k but their actual size is matching with the data transferred (+header). Increasing the packet size won't have measurable effect for the packet transport time because the transport time is bound by the latency because of the lot of round trips and not by the time required to transport the data.


http://reviews.llvm.org/D13812





More information about the lldb-commits mailing list