Searched refs:is_float (Results 1 – 6 of 6) sorted by relevance
/aosp12/art/runtime/ |
H A D | stack.h | 307 bool IsAccessibleRegister(uint32_t reg, bool is_float) const { in IsAccessibleRegister() argument 308 return is_float ? IsAccessibleFPR(reg) : IsAccessibleGPR(reg); in IsAccessibleRegister() 310 uintptr_t GetRegister(uint32_t reg, bool is_float) const { in GetRegister() argument 311 DCHECK(IsAccessibleRegister(reg, is_float)); in GetRegister() 312 return is_float ? GetFPR(reg) : GetGPR(reg); in GetRegister()
|
H A D | stack.cc | 360 const bool is_float = (location_kind == DexRegisterLocation::Kind::kInFpuRegister) || in GetRegisterIfAccessible() local 363 if (kRuntimeISA == InstructionSet::kX86 && is_float) { in GetRegisterIfAccessible() 371 if (!IsAccessibleRegister(reg, is_float)) { in GetRegisterIfAccessible() 374 uintptr_t ptr_val = GetRegister(reg, is_float); in GetRegisterIfAccessible()
|
/aosp12/art/compiler/optimizing/ |
H A D | code_generator_x86_64.h | 301 uint32_t stack_adjustment, bool is_float);
|
H A D | code_generator_x86_64.cc | 3746 uint32_t stack_adjustment, bool is_float) { in PushOntoFPStack() argument 3748 DCHECK(is_float); in PushOntoFPStack() 3751 DCHECK(!is_float); in PushOntoFPStack() 3755 if (is_float) { in PushOntoFPStack() 3769 bool is_float = type == DataType::Type::kFloat32; in GenerateRemFP() local 3781 PushOntoFPStack(second, elem_size, 2 * elem_size, is_float); in GenerateRemFP() 3782 PushOntoFPStack(first, 0, 2 * elem_size, is_float); in GenerateRemFP() 3799 if (is_float) { in GenerateRemFP() 3810 if (is_float) { in GenerateRemFP()
|
H A D | code_generator_x86.cc | 3781 bool is_float = type == DataType::Type::kFloat32; in GenerateRemFP() local 3793 const bool is_wide = !is_float; in GenerateRemFP() 3812 if (is_float) { in GenerateRemFP() 3823 if (is_float) { in GenerateRemFP()
|
/aosp12/art/oatdump/ |
H A D | oatdump.cc | 1305 void DumpSpillMask(std::ostream& os, uint32_t spill_mask, bool is_float) { in DumpSpillMask() argument 1312 if (is_float) { in DumpSpillMask()
|