Searched refs:is_float (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | stack.cc | 333 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); in GetRegisterIfAccessible() local 335 if (kRuntimeISA == InstructionSet::kX86 && is_float) { in GetRegisterIfAccessible() 349 if (!IsAccessibleRegister(reg, is_float)) { in GetRegisterIfAccessible() 352 uintptr_t ptr_val = GetRegister(reg, is_float); in GetRegisterIfAccessible() 423 const bool is_float = (kind_lo == kDoubleLoVReg); in GetRegisterPairIfAccessible() local 424 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { in GetRegisterPairIfAccessible() 427 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); in GetRegisterPairIfAccessible() 428 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float); in GetRegisterPairIfAccessible()
|
D | stack.h | 822 bool IsAccessibleRegister(uint32_t reg, bool is_float) const { in IsAccessibleRegister() argument 823 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg); in IsAccessibleRegister() 825 uintptr_t GetRegister(uint32_t reg, bool is_float) const { in GetRegister() argument 826 DCHECK(IsAccessibleRegister(reg, is_float)); in GetRegister() 827 return is_float ? GetFPR(reg) : GetGPR(reg); in GetRegister()
|
/art/compiler/optimizing/ |
D | code_generator_x86_64.h | 265 uint32_t stack_adjustment, bool is_float);
|
D | code_generator_x86_64.cc | 3397 uint32_t stack_adjustment, bool is_float) { in PushOntoFPStack() argument 3399 DCHECK(is_float); in PushOntoFPStack() 3402 DCHECK(!is_float); in PushOntoFPStack() 3406 if (is_float) { in PushOntoFPStack() 3420 bool is_float = type == Primitive::kPrimFloat; in GenerateRemFP() local 3432 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float); in GenerateRemFP() 3433 PushOntoFPStack(first, 0, 2 * elem_size, is_float); in GenerateRemFP() 3450 if (is_float) { in GenerateRemFP() 3461 if (is_float) { in GenerateRemFP()
|
D | code_generator_x86.cc | 3413 bool is_float = type == Primitive::kPrimFloat; in GenerateRemFP() local 3425 const bool is_wide = !is_float; in GenerateRemFP() 3444 if (is_float) { in GenerateRemFP() 3455 if (is_float) { in GenerateRemFP()
|
/art/compiler/utils/mips/ |
D | assembler_mips.h | 502 bool is_float = false);
|
D | assembler_mips.cc | 3157 bool is_float) { in AdjustBaseAndOffset() argument 3170 bool two_accesses = is_doubleword && (!is_float || !doubleword_aligned); in AdjustBaseAndOffset()
|
/art/oatdump/ |
D | oatdump.cc | 1332 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) { in DumpSpillMask() argument 1339 if (is_float) { in DumpSpillMask()
|