aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/register-configuration.h
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2016-09-06 22:49:51 +0200
committerMichaël Zasso <targos@protonmail.com>2016-09-22 09:51:19 +0200
commitec02b811a8a5c999bab4de312be2d732b7d9d50b (patch)
treeca3068017254f238cf413a451c57a803572983a4 /deps/v8/src/register-configuration.h
parentd2eb7ce0105369a9cad82787cb33a665e9bd00ad (diff)
downloadandroid-node-v8-ec02b811a8a5c999bab4de312be2d732b7d9d50b.tar.gz
android-node-v8-ec02b811a8a5c999bab4de312be2d732b7d9d50b.tar.bz2
android-node-v8-ec02b811a8a5c999bab4de312be2d732b7d9d50b.zip
deps: update V8 to 5.4.500.27
Pick up latest commit from the 5.4-lkgr branch. deps: edit V8 gitignore to allow trace event copy deps: update V8 trace event to 315bf1e2d45be7d53346c31cfcc37424a32c30c8 deps: edit V8 gitignore to allow gtest_prod.h copy deps: update V8 gtest to 6f8a66431cb592dad629028a50b3dd418a408c87 PR-URL: https://github.com/nodejs/node/pull/8317 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Diffstat (limited to 'deps/v8/src/register-configuration.h')
-rw-r--r--deps/v8/src/register-configuration.h90
1 files changed, 80 insertions, 10 deletions
diff --git a/deps/v8/src/register-configuration.h b/deps/v8/src/register-configuration.h
index 8ad1d78304..2cb7c91eec 100644
--- a/deps/v8/src/register-configuration.h
+++ b/deps/v8/src/register-configuration.h
@@ -6,6 +6,7 @@
#define V8_COMPILER_REGISTER_CONFIGURATION_H_
#include "src/base/macros.h"
+#include "src/machine-type.h"
namespace v8 {
namespace internal {
@@ -14,18 +15,22 @@ namespace internal {
// for instruction creation.
class RegisterConfiguration {
public:
- // Define the optimized compiler selector for register configuration
- // selection.
- //
- // TODO(X87): This distinction in RegisterConfigurations is temporary
- // until x87 TF supports all of the registers that Crankshaft does.
- enum CompilerSelector { CRANKSHAFT, TURBOFAN };
+ enum AliasingKind {
+ // Registers alias a single register of every other size (e.g. Intel).
+ OVERLAP,
+ // Registers alias two registers of the next smaller size (e.g. ARM).
+ COMBINE
+ };
// Architecture independent maxes.
static const int kMaxGeneralRegisters = 32;
- static const int kMaxDoubleRegisters = 32;
+ static const int kMaxFPRegisters = 32;
- static const RegisterConfiguration* ArchDefault(CompilerSelector compiler);
+ // Default RegisterConfigurations for the target architecture.
+ // TODO(X87): This distinction in RegisterConfigurations is temporary
+ // until x87 TF supports all of the registers that Crankshaft does.
+ static const RegisterConfiguration* Crankshaft();
+ static const RegisterConfiguration* Turbofan();
RegisterConfiguration(int num_general_registers, int num_double_registers,
int num_allocatable_general_registers,
@@ -33,23 +38,35 @@ class RegisterConfiguration {
int num_allocatable_aliased_double_registers,
const int* allocatable_general_codes,
const int* allocatable_double_codes,
+ AliasingKind fp_aliasing_kind,
char const* const* general_names,
- char const* const* double_names);
+ char const* const* float_names,
+ char const* const* double_names,
+ char const* const* simd128_names);
int num_general_registers() const { return num_general_registers_; }
+ int num_float_registers() const { return num_float_registers_; }
int num_double_registers() const { return num_double_registers_; }
+ int num_simd128_registers() const { return num_simd128_registers_; }
int num_allocatable_general_registers() const {
return num_allocatable_general_registers_;
}
+ int num_allocatable_float_registers() const {
+ return num_allocatable_float_registers_;
+ }
int num_allocatable_double_registers() const {
return num_allocatable_double_registers_;
}
- // TODO(turbofan): This is a temporary work-around required because our
+ // TODO(bbudge): This is a temporary work-around required because our
// register allocator does not yet support the aliasing of single/double
// registers on ARM.
int num_allocatable_aliased_double_registers() const {
return num_allocatable_aliased_double_registers_;
}
+ int num_allocatable_simd128_registers() const {
+ return num_allocatable_simd128_registers_;
+ }
+ AliasingKind fp_aliasing_kind() const { return fp_aliasing_kind_; }
int32_t allocatable_general_codes_mask() const {
return allocatable_general_codes_mask_;
}
@@ -59,34 +76,87 @@ class RegisterConfiguration {
int GetAllocatableGeneralCode(int index) const {
return allocatable_general_codes_[index];
}
+ bool IsAllocatableGeneralCode(int index) const {
+ return ((1 << index) & allocatable_general_codes_mask_) != 0;
+ }
+ int GetAllocatableFloatCode(int index) const {
+ return allocatable_float_codes_[index];
+ }
+ bool IsAllocatableFloatCode(int index) const {
+ return ((1 << index) & allocatable_float_codes_mask_) != 0;
+ }
int GetAllocatableDoubleCode(int index) const {
return allocatable_double_codes_[index];
}
+ bool IsAllocatableDoubleCode(int index) const {
+ return ((1 << index) & allocatable_double_codes_mask_) != 0;
+ }
+ int GetAllocatableSimd128Code(int index) const {
+ return allocatable_simd128_codes_[index];
+ }
+ bool IsAllocatableSimd128Code(int index) const {
+ return ((1 << index) & allocatable_simd128_codes_mask_) != 0;
+ }
const char* GetGeneralRegisterName(int code) const {
return general_register_names_[code];
}
+ const char* GetFloatRegisterName(int code) const {
+ return float_register_names_[code];
+ }
const char* GetDoubleRegisterName(int code) const {
return double_register_names_[code];
}
+ const char* GetSimd128RegisterName(int code) const {
+ return simd128_register_names_[code];
+ }
const int* allocatable_general_codes() const {
return allocatable_general_codes_;
}
+ const int* allocatable_float_codes() const {
+ return allocatable_float_codes_;
+ }
const int* allocatable_double_codes() const {
return allocatable_double_codes_;
}
+ const int* allocatable_simd128_codes() const {
+ return allocatable_simd128_codes_;
+ }
+
+ // Aliasing calculations for floating point registers, when fp_aliasing_kind()
+ // is COMBINE. Currently only implemented for kFloat32, kFloat64, or kSimd128
+ // reps. Returns the number of aliases, and if > 0, alias_base_index is set to
+ // the index of the first alias.
+ int GetAliases(MachineRepresentation rep, int index,
+ MachineRepresentation other_rep, int* alias_base_index) const;
+ // Returns a value indicating whether two registers alias each other, when
+ // fp_aliasing_kind() is COMBINE. Currently implemented for kFloat32,
+ // kFloat64, or kSimd128 reps.
+ bool AreAliases(MachineRepresentation rep, int index,
+ MachineRepresentation other_rep, int other_index) const;
private:
const int num_general_registers_;
+ int num_float_registers_;
const int num_double_registers_;
+ int num_simd128_registers_;
int num_allocatable_general_registers_;
+ int num_allocatable_float_registers_;
int num_allocatable_double_registers_;
int num_allocatable_aliased_double_registers_;
+ int num_allocatable_simd128_registers_;
int32_t allocatable_general_codes_mask_;
+ int32_t allocatable_float_codes_mask_;
int32_t allocatable_double_codes_mask_;
+ int32_t allocatable_simd128_codes_mask_;
const int* allocatable_general_codes_;
+ int allocatable_float_codes_[kMaxFPRegisters];
const int* allocatable_double_codes_;
+ int allocatable_simd128_codes_[kMaxFPRegisters];
+ AliasingKind fp_aliasing_kind_;
char const* const* general_register_names_;
+ char const* const* float_register_names_;
char const* const* double_register_names_;
+ char const* const* simd128_register_names_;
};
} // namespace internal