Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_riscv64.h199 void Exchange(int index1, int index2, bool double_slot);
Dcode_generator_riscv64.cc1078 void ParallelMoveResolverRISCV64::Exchange(int index1, int index2, bool double_slot) { in Exchange() argument
1092 Location loc1(double_slot ? Location::DoubleStackSlot(index1) : Location::StackSlot(index1)); in Exchange()
1093 Location loc2(double_slot ? Location::DoubleStackSlot(index2) : Location::StackSlot(index2)); in Exchange()
1096 DataType::Type tmp_type = double_slot ? DataType::Type::kInt64 : DataType::Type::kInt32; in Exchange()
1101 ? (double_slot ? DataType::Type::kFloat64 : DataType::Type::kFloat32) in Exchange()
1112 if (double_slot) { in Exchange()