Home
last modified time | relevance | path

Searched refs:const_to_move (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_x86_64.cc698 HConstant* const_to_move = locations->Out().GetConstant(); in Move() local
699 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) { in Move()
700 Immediate imm(GetInt32ValueOf(const_to_move)); in Move()
707 DCHECK_EQ(location.GetConstant(), const_to_move); in Move()
709 } else if (const_to_move->IsLongConstant()) { in Move()
710 int64_t value = const_to_move->AsLongConstant()->GetValue(); in Move()
718 DCHECK_EQ(location.GetConstant(), const_to_move); in Move()
Dcode_generator_arm.cc810 HConstant* const_to_move = locations->Out().GetConstant(); in Move() local
811 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) { in Move()
812 int32_t value = GetInt32ValueOf(const_to_move); in Move()
821 DCHECK(const_to_move->IsLongConstant()) << const_to_move->DebugName(); in Move()
822 int64_t value = const_to_move->AsLongConstant()->GetValue(); in Move()
Dcode_generator_x86.cc725 HConstant* const_to_move = locations->Out().GetConstant(); in Move() local
726 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) { in Move()
727 Immediate imm(GetInt32ValueOf(const_to_move)); in Move()
734 DCHECK_EQ(location.GetConstant(), const_to_move); in Move()
736 } else if (const_to_move->IsLongConstant()) { in Move()
737 int64_t value = const_to_move->AsLongConstant()->GetValue(); in Move()