Searched defs:is_float (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Dstack.cc325 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); local
328 DCHECK(!is_float || kRuntimeISA != InstructionSet::kX86);
330 if (!IsAccessibleRegister(reg, is_float)) {
333 uintptr_t ptr_val = GetRegister(reg, is_float);
404 const bool is_float = (kind_lo == kDoubleLoVReg); local
405 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) {
408 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float);
409 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float);
/art/oatdump/
H A Doatdump.cc975 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) { argument
982 if (is_float) {
/art/compiler/optimizing/
H A Dcode_generator_x86.cc3177 bool is_float = type == Primitive::kPrimFloat; local
3189 const bool is_wide = !is_float;
3208 if (is_float) {
3219 if (is_float) {
H A Dcode_generator_x86_64.cc3204 uint32_t stack_adjustment, bool is_float) {
3206 DCHECK(is_float);
3209 DCHECK(!is_float);
3213 if (is_float) {
3227 bool is_float = type == Primitive::kPrimFloat; local
3239 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float);
3240 PushOntoFPStack(first, 0, 2 * elem_size, is_float);
3257 if (is_float) {
3268 if (is_float) {
3203 PushOntoFPStack(Location source, uint32_t temp_offset, uint32_t stack_adjustment, bool is_float) argument

Completed in 98 milliseconds