Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/wasm/baseline/
Dliftoff-register.h122 static constexpr int kBitsPerGpRegCode = variable
128 (kNeedS128RegPair ? 2 : 1) + 2 * kBitsPerGpRegCode;
130 static_assert(2 * kBitsPerGpRegCode >= kBitsPerFpRegCode,
208 storage_t combined_code = low.code() | high.code() << kBitsPerGpRegCode | in ForPair()
209 1 << (2 * kBitsPerGpRegCode); in ForPair()
216 storage_t combined_code = low.code() | 2 << (2 * kBitsPerGpRegCode); in ForFpPair()
222 (code_ & (3 << (2 * kBitsPerGpRegCode))); in is_pair()
226 return kNeedI64RegPair && (code_ & (1 << (2 * kBitsPerGpRegCode))) != 0; in is_gp_pair()
229 return kNeedS128RegPair && (code_ & (2 << (2 * kBitsPerGpRegCode))) != 0; in is_fp_pair()
252 static constexpr storage_t kCodeMask = (1 << kBitsPerGpRegCode) - 1; in low_gp()
[all …]