OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:is_pair
(Results
1 - 4
of
4
) sorted by null
/external/v8/src/wasm/baseline/
liftoff-register.h
114
constexpr bool
is_pair
() const {
function in class:v8::internal::wasm::LiftoffRegister
128
DCHECK(
is_pair
());
134
DCHECK(
is_pair
());
155
return
is_pair
() ? kGpRegPair : is_gp() ? kGpReg : kFpReg;
159
DCHECK_EQ(
is_pair
(), other.
is_pair
());
163
DCHECK_EQ(
is_pair
(), other.
is_pair
());
167
if (
is_pair
()) return low().overlaps(other) || high().overlaps(other);
168
if (other.
is_pair
()) return *this == other.low() || *this == other.high()
[
all
...]
liftoff-assembler.cc
230
if (src.
is_pair
()) {
492
const bool
is_pair
= kNeedI64RegPair && type == kWasmI64;
local
493
const int num_lowered_params =
is_pair
? 2 : 1;
500
is_pair
&& lowered_idx == 0 ? kHighWord : kLowWord;
506
RegClass rc =
is_pair
? kGpReg : reg_class_for(type);
509
if (
is_pair
) {
585
if (kNeedI64RegPair && dst.
is_pair
()) {
611
if (kNeedI64RegPair && reg.
is_pair
()) {
648
if (slot->reg().
is_pair
()) {
/external/v8/src/arm64/
simulator-arm64.cc
2102
int32_t
is_pair
= instr->LoadStoreXPair();
local
[
all
...]
/external/vixl/src/aarch64/
simulator-aarch64.cc
1775
bool
is_pair
= instr->GetLdStXPair();
local
[
all
...]
Completed in 437 milliseconds