Searched refs:is_float (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | stack.cc | 325 const bool is_float = (kind == kFloatVReg) || (kind == kDoubleLoVReg) || (kind == kDoubleHiVReg); in GetRegisterIfAccessible() local 328 DCHECK(!is_float || kRuntimeISA != InstructionSet::kX86); in GetRegisterIfAccessible() 330 if (!IsAccessibleRegister(reg, is_float)) { in GetRegisterIfAccessible() 333 uintptr_t ptr_val = GetRegister(reg, is_float); in GetRegisterIfAccessible() 404 const bool is_float = (kind_lo == kDoubleLoVReg); in GetRegisterPairIfAccessible() local 405 if (!IsAccessibleRegister(reg_lo, is_float) || !IsAccessibleRegister(reg_hi, is_float)) { in GetRegisterPairIfAccessible() 408 uintptr_t ptr_val_lo = GetRegister(reg_lo, is_float); in GetRegisterPairIfAccessible() 409 uintptr_t ptr_val_hi = GetRegister(reg_hi, is_float); in GetRegisterPairIfAccessible()
|
D | stack.h | 781 bool IsAccessibleRegister(uint32_t reg, bool is_float) const { in IsAccessibleRegister() argument 782 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg); in IsAccessibleRegister() 784 uintptr_t GetRegister(uint32_t reg, bool is_float) const { in GetRegister() argument 785 DCHECK(IsAccessibleRegister(reg, is_float)); in GetRegister() 786 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 | 3204 uint32_t stack_adjustment, bool is_float) { in PushOntoFPStack() argument 3206 DCHECK(is_float); in PushOntoFPStack() 3209 DCHECK(!is_float); in PushOntoFPStack() 3213 if (is_float) { in PushOntoFPStack() 3227 bool is_float = type == Primitive::kPrimFloat; in GenerateRemFP() local 3239 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float); in GenerateRemFP() 3240 PushOntoFPStack(first, 0, 2 * elem_size, is_float); in GenerateRemFP() 3257 if (is_float) { in GenerateRemFP() 3268 if (is_float) { in GenerateRemFP()
|
D | code_generator_x86.cc | 3177 bool is_float = type == Primitive::kPrimFloat; in GenerateRemFP() local 3189 const bool is_wide = !is_float; in GenerateRemFP() 3208 if (is_float) { in GenerateRemFP() 3219 if (is_float) { in GenerateRemFP()
|
/art/oatdump/ |
D | oatdump.cc | 975 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) { in DumpSpillMask() argument 982 if (is_float) { in DumpSpillMask()
|