[ptr-compr][arm64] Set kRootRegisterBias to zero
... in order to improve performance of decompression code on C++ side (because computation of isolate root from isolate pointer becomes a trivial reinterpret cast) and measure the impact separately from other ptr-compr changes. Bug: v8:9353 Change-Id: I36906cef2968355411ee944d97625ecd2652646b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1835550 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Igor Sheludko <ishell@chromium.org> Cr-Commit-Position: refs/heads/master@{#64115}
This commit is contained in:
parent
3aeadaac22
commit
a1e73fd6af
@ -147,7 +147,8 @@ const unsigned kFloat16ExponentBias = 15;
|
||||
// Actual value of root register is offset from the root array's start
|
||||
// to take advantage of negative displacement values.
|
||||
// TODO(sigurds): Choose best value.
|
||||
constexpr int kRootRegisterBias = 256;
|
||||
// TODO(ishell): Choose best value for ptr-compr.
|
||||
constexpr int kRootRegisterBias = kSystemPointerSize == kTaggedSize ? 256 : 0;
|
||||
|
||||
using float16 = uint16_t;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user