Home
last modified time | relevance | path

Searched refs:shifted_value (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/compiler/backend/
Dinstruction.h459 uintptr_t shifted_value = in set_next() local
462 shifted_value << kPointerShift); in set_next()
463 value_ |= NextOperandField::encode(static_cast<uint64_t>(shifted_value)); in set_next()
467 uintptr_t shifted_value = in next() local
469 return reinterpret_cast<PendingOperand*>(shifted_value << kPointerShift); in next()
/third_party/node/deps/v8/src/codegen/s390/
Dmacro-assembler-s390.cc3187 intptr_t shifted_value = value; in CallRecordWriteStub() local
3191 while ((0 != shifted_value) && (0 == (shifted_value & 1))) { in CallRecordWriteStub()
3193 shifted_value >>= 1; in CallRecordWriteStub()
3200 if ((0 != shifted_value) && base::bits::IsPowerOfTwo(shifted_value + 1)) { in CallRecordWriteStub()
3202 base::bits::CountLeadingZeros64(shifted_value) - trailing_zeros; in CallRecordWriteStub()
3208 } else if (-1 == shifted_value) { in CallRecordWriteStub()