Home | History | Annotate | Download | only in src

Lines Matching full:const

25   static const int kMaxGeneralRegisters = 32;
26 static const int kMaxDoubleRegisters = 32;
28 static const RegisterConfiguration* ArchDefault(CompilerSelector compiler);
34 const int* allocatable_general_codes,
35 const int* allocatable_double_codes,
36 char const* const* general_names,
37 char const* const* double_names);
39 int num_general_registers() const { return num_general_registers_; }
40 int num_double_registers() const { return num_double_registers_; }
41 int num_allocatable_general_registers() const {
44 int num_allocatable_double_registers() const {
50 int num_allocatable_aliased_double_registers() const {
53 int32_t allocatable_general_codes_mask() const {
56 int32_t allocatable_double_codes_mask() const {
59 int GetAllocatableGeneralCode(int index) const {
62 int GetAllocatableDoubleCode(int index) const {
65 const char* GetGeneralRegisterName(int code) const {
68 const char* GetDoubleRegisterName(int code) const {
71 const int* allocatable_general_codes() const {
74 const int* allocatable_double_codes() const {
79 const int num_general_registers_;
80 const int num_double_registers_;
86 const int* allocatable_general_codes_;
87 const int* allocatable_double_codes_;
88 char const* const* general_register_names_;
89 char const* const* double_register_names_;