HomeSort by relevance Sort by last modified time
    Searched defs:kNumRegisters (Results 1 - 6 of 6) sorted by null

  /external/v8/src/ia32/
assembler-ia32.h 69 static const int kNumRegisters = 8;
79 ASSERT(code < kNumRegisters);
83 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
143 static const int kNumRegisters = 8;
174 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
    [all...]
  /external/v8/src/mips/
constants-mips.h 86 const int kNumRegisters = 32;
assembler-mips.h 74 static const int kNumRegisters = v8::internal::kNumRegisters;
113 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
189 static const int kNumRegisters = v8::internal::kNumFPURegisters;
200 static const int kNumAllocatableRegisters = kNumRegisters / 2 -
    [all...]
  /external/v8/src/x64/
assembler-x64.h 98 static const int kNumRegisters = 16;
132 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
161 static const int kAllocationIndexByRegisterCode[kNumRegisters];
202 static const int kNumRegisters = 16;
240 ASSERT(code < kNumRegisters);
244 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
    [all...]
  /external/v8/src/arm/
assembler-arm.h 73 static const int kNumRegisters = 16;
107 bool is_valid() const { return 0 <= code_ && code_ < kNumRegisters; }
193 static const int kNumRegisters = 16;
199 static const int kNumAllocatableRegisters = kNumRegisters -
    [all...]
constants-arm.h 95 const int kNumRegisters = 16;
752 static const char* names_[kNumRegisters];

Completed in 197 milliseconds