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

  /external/chromium_org/v8/src/ia32/
lithium-gap-resolver-ia32.h 100 int source_uses_[Register::kMaxNumAllocatableRegisters];
101 int destination_uses_[Register::kMaxNumAllocatableRegisters];
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/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...]
assembler-mips-inl.h 84 return kMaxNumAllocatableRegisters;
94 return FPURegister::kMaxNumAllocatableRegisters;
100 ASSERT(reg.code() / 2 < kMaxNumAllocatableRegisters);
deoptimizer-mips.cc 149 kDoubleSize * FPURegister::kMaxNumAllocatableRegisters;
153 for (int i = 0; i < FPURegister::kMaxNumAllocatableRegisters; ++i) {
290 for (int i = 0; i < FPURegister::kMaxNumAllocatableRegisters; ++i) {
assembler-mips.cc 84 ASSERT(index >= 0 && index < kMaxNumAllocatableRegisters);
    [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...]
assembler-x64.cc 142 Register::kRegisterCodeByAllocationIndex[kMaxNumAllocatableRegisters] = {
    [all...]
macro-assembler-x64.cc     [all...]
  /external/chromium_org/v8/src/arm/
deoptimizer-arm.cc 149 kDoubleSize * DwVfpRegister::kMaxNumAllocatableRegisters;
212 // double_registers_[DoubleRegister::kMaxNumAllocatableRegisters]
214 for (int i = 0; i < DwVfpRegister::kMaxNumAllocatableRegisters; ++i) {
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...]
assembler-arm-inl.h 51 return kMaxNumAllocatableRegisters;
  /external/chromium_org/v8/src/
lithium-allocator.h 611 EmbeddedVector<LiveRange*, Register::kMaxNumAllocatableRegisters>
613 EmbeddedVector<LiveRange*, DoubleRegister::kMaxNumAllocatableRegisters>
lithium-allocator.cc 622 return -index - 1 - Register::kMaxNumAllocatableRegisters;
654 ASSERT(index < Register::kMaxNumAllocatableRegisters);
    [all...]

Completed in 230 milliseconds