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

  /external/chromium_org/v8/src/ia32/
assembler-ia32.h 68 static const int kMaxNumAllocatableRegisters = 6;
70 return kMaxNumAllocatableRegisters;
125 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
139 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
146 static const int kMaxNumAllocatableRegisters = 7;
    [all...]
  /external/chromium_org/v8/src/x64/
assembler-x64.h 97 static const int kMaxNumAllocatableRegisters = 11;
99 return kMaxNumAllocatableRegisters;
108 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
114 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
163 static const int kRegisterCodeByAllocationIndex[kMaxNumAllocatableRegisters];
219 static const int kMaxNumAllocatableRegisters = 15;
221 return kMaxNumAllocatableRegisters;
230 ASSERT(0 <= index && index < kMaxNumAllocatableRegisters);
236 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 75 static const int kMaxNumAllocatableRegisters = 14; // v0 through t6 and cp.
82 ASSERT((reg.code() - 2) < (kMaxNumAllocatableRegisters - 1) ||
85 kMaxNumAllocatableRegisters - 1 : // Return last index for 'cp'.
90 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
91 return index == kMaxNumAllocatableRegisters - 1 ?
97 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
209 static const int kMaxNumAllocatableRegisters = kMaxNumRegisters / 2 -
218 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
    [all...]
  /external/chromium_org/v8/src/arm/
assembler-arm.h 160 static const int kMaxNumAllocatableRegisters =
167 ASSERT(reg.code() < kMaxNumAllocatableRegisters);
172 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
177 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
274 static const int kMaxNumAllocatableRegisters = kMaxNumRegisters -
    [all...]

Completed in 466 milliseconds