HomeSort by relevance Sort by last modified time
    Searched full:asintconstant (Results 1 - 25 of 40) sorted by null

1 2

  /art/compiler/optimizing/
dead_code_elimination.cc 45 if (condition->AsIntConstant()->IsTrue()) {
49 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->AsIntConstant()->GetValue();
58 int32_t switch_value = switch_input->AsIntConstant()->GetValue();
131 return condition->Evaluate(left->AsIntConstant(), right->AsIntConstant());
230 if (value_to_check->AsIntConstant()->IsTrue()) {
233 DCHECK(value_to_check->AsIntConstant()->IsFalse())
234 << value_to_check->AsIntConstant()->GetValue();
nodes_shared.cc 30 *shift_amount = instruction->AsShl()->GetRight()->AsIntConstant()->GetValue();
33 *shift_amount = instruction->AsShr()->GetRight()->AsIntConstant()->GetValue();
36 *shift_amount = instruction->AsUShr()->GetRight()->AsIntConstant()->GetValue();
constant_folding_test.cc 136 ASSERT_EQ(inst->AsIntConstant()->GetValue(), -1);
258 ASSERT_EQ(inst->AsIntConstant()->GetValue(), 3);
337 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 12);
340 ASSERT_EQ(inst2->AsIntConstant()->GetValue(), 9);
343 ASSERT_EQ(inst3->AsIntConstant()->GetValue(), 3);
408 ASSERT_EQ(inst->AsIntConstant()->GetValue(), 1);
635 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 20);
638 ASSERT_EQ(inst2->AsIntConstant()->GetValue(), 12);
641 ASSERT_EQ(inst3->AsIntConstant()->GetValue(), 7);
644 ASSERT_EQ(inst4->AsIntConstant()->GetValue(), 3)
    [all...]
common_arm.h 166 return instr->AsIntConstant()->GetValue();
185 return instr->AsIntConstant()->GetValue();
intrinsics_arm64.cc     [all...]
intrinsics_x86_64.cc     [all...]
reference_type_propagation.cc 421 if (rhs->AsIntConstant()->IsTrue()) {
426 DCHECK(rhs->AsIntConstant()->IsFalse()) << rhs->AsIntConstant()->GetValue();
438 if (rhs->AsIntConstant()->IsFalse()) {
443 DCHECK(rhs->AsIntConstant()->IsTrue()) << rhs->AsIntConstant()->GetValue();
    [all...]
intrinsics_x86.cc 129 int32_t constant = src_pos.GetConstant()->AsIntConstant()->GetValue();
153 int32_t constant = dest_pos.GetConstant()->AsIntConstant()->GetValue();
    [all...]
bounds_check_elimination.cc 39 int32_t instr_const = instruction->AsIntConstant()->GetValue();
77 int32_t v = right->AsIntConstant()->GetValue();
97 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue());
113 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue());
443 int32_t initial_constant = initial_->AsIntConstant()->GetValue();
843 int32_t constant = index->AsIntConstant()->GetValue();
848 if (constant < array_length->AsIntConstant()->GetValue()) {
    [all...]
instruction_simplifier.cc 641 if (input_const->AsIntConstant()->IsTrue()) {
646 } else if (input_const->AsIntConstant()->IsFalse()) {
673 if (input_const->AsIntConstant()->IsTrue()) {
678 } else if (input_const->AsIntConstant()->IsFalse()) {
703 if (input->AsIntConstant()->IsTrue()) {
706 DCHECK(input->AsIntConstant()->IsFalse()) << input->AsIntConstant()->GetValue();
747 if (condition->AsIntConstant()->IsTrue()) {
752 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->AsIntConstant()->GetValue()
    [all...]
intrinsics_arm.cc 65 int32_t constant = pos.GetConstant()->AsIntConstant()->GetValue();
87 int32_t constant = copy_length.GetConstant()->AsIntConstant()->GetValue();
    [all...]
code_generator_arm.cc     [all...]
code_generator_mips64.cc     [all...]
code_generator_vector_x86.cc 657 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
686 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
711 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
code_generator_vector_x86_64.cc 646 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
675 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
700 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
ssa_builder.cc 54 DCHECK_EQ(0, int_operand->AsIntConstant()->GetValue());
670 return GetFloatEquivalent(value->AsIntConstant());
679 if (value->IsIntConstant() && value->AsIntConstant()->GetValue() == 0) {
code_generator_mips.cc     [all...]
code_generator_x86.cc     [all...]
code_generator_vector_arm64.cc 594 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
627 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
660 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
code_generator.cc     [all...]
intrinsics_mips.cc     [all...]
intrinsics_mips64.cc     [all...]
code_generator.h 461 return constant->AsIntConstant()->GetValue();
472 return constant->AsIntConstant()->GetValue();
    [all...]
  /system/tools/aidl/
aidl_language.h 151 virtual AidlIntConstant* AsIntConstant() { return nullptr; }
168 AidlIntConstant* AsIntConstant() override { return this; }
aidl_language.cpp 198 AidlIntConstant* int_constant = local->AsIntConstant();

Completed in 2132 milliseconds

1 2