HomeSort by relevance Sort by last modified time
    Searched refs:AsIntConstant (Results 1 - 25 of 42) sorted by null

1 2

  /art/compiler/optimizing/
load_store_analysis.cc 71 return idx1_cst->AsIntConstant()->GetValue() == idx2_cst->AsIntConstant()->GetValue();
83 return idx1_cst->AsIntConstant()->GetValue() == -(idx2_cst->AsIntConstant()->GetValue());
113 return idx1->AsIntConstant()->GetValue() == idx2->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();
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();
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...]
instruction_simplifier.cc 656 if (input_const->AsIntConstant()->IsTrue()) {
661 } else if (input_const->AsIntConstant()->IsFalse()) {
688 if (input_const->AsIntConstant()->IsTrue()) {
693 } else if (input_const->AsIntConstant()->IsFalse()) {
718 if (input->AsIntConstant()->IsTrue()) {
721 DCHECK(input->AsIntConstant()->IsFalse()) << input->AsIntConstant()->GetValue();
762 if (condition->AsIntConstant()->IsTrue()) {
767 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->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...]
common_arm.h 166 return instr->AsIntConstant()->GetValue();
185 return instr->AsIntConstant()->GetValue();
instruction_simplifier_shared.cc 381 uint32_t another_data_offset = another_access->GetOffset()->AsIntConstant()->GetValue();
382 size_t another_component_shift = another_access->GetShift()->AsIntConstant()->GetValue();
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();
152 int32_t constant = dest_pos.GetConstant()->AsIntConstant()->GetValue();
    [all...]
intrinsics_arm64.cc     [all...]
intrinsics_x86_64.cc     [all...]
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_mips64.cc     [all...]
code_generator_vector_mips.cc 730 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
763 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
796 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
874 offset += index.GetConstant()->AsIntConstant()->GetValue() << scale;
    [all...]
code_generator_vector_mips64.cc 734 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
767 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
800 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
878 offset += index.GetConstant()->AsIntConstant()->GetValue() << scale;
    [all...]
code_generator_vector_arm_vixl.cc 545 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
574 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
603 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
code_generator_mips.cc     [all...]
code_generator_x86.cc     [all...]
intrinsics_mips.cc     [all...]
intrinsics_mips64.cc     [all...]
code_generator_vector_arm64.cc 715 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
748 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
781 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
    [all...]
code_generator_vector_x86.cc 746 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
775 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
800 int32_t value = locations->InAt(1).GetConstant()->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 532 milliseconds

1 2