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

  /external/v8/src/
store-buffer-inl.h 47 if ((reinterpret_cast<uintptr_t>(top) & kStoreBufferOverflowBit) != 0) {
store-buffer.h 84 static const int kStoreBufferOverflowBit = 1 << (14 + kPointerSizeLog2);
85 static const int kStoreBufferSize = kStoreBufferOverflowBit;
store-buffer.cc 92 ASSERT((reinterpret_cast<uintptr_t>(limit_) & kStoreBufferOverflowBit) != 0);
93 ASSERT((reinterpret_cast<uintptr_t>(limit_ - 1) & kStoreBufferOverflowBit) ==
  /external/v8/src/arm/
macro-assembler-arm.cc 568 tst(scratch, Operand(StoreBuffer::kStoreBufferOverflowBit));
    [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc 106 test(scratch, Immediate(StoreBuffer::kStoreBufferOverflowBit));
    [all...]
  /external/v8/src/x64/
macro-assembler-x64.cc 222 testq(scratch, Immediate(StoreBuffer::kStoreBufferOverflowBit));
    [all...]
  /external/v8/src/mips/
macro-assembler-mips.cc 324 And(t8, scratch, Operand(StoreBuffer::kStoreBufferOverflowBit));
    [all...]

Completed in 146 milliseconds