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

1 2

  /art/compiler/optimizing/
load_store_analysis.cc 56 idx1->GetConstantRight()->AsIntConstant()->GetValue() :
57 -idx1->GetConstantRight()->AsIntConstant()->GetValue();
85 idx1->GetConstantRight()->AsIntConstant()->GetValue() :
86 -idx1->GetConstantRight()->AsIntConstant()->GetValue();
88 idx2->GetConstantRight()->AsIntConstant()->GetValue() :
89 -idx2->GetConstantRight()->AsIntConstant()->GetValue();
111 int64_t l1 = idx1->AsIntConstant()->GetValue();
112 int64_t l2 = idx2->AsIntConstant()->GetValue();
nodes_shared.cc 36 *shift_amount = instruction->AsShl()->GetRight()->AsIntConstant()->GetValue();
39 *shift_amount = instruction->AsShr()->GetRight()->AsIntConstant()->GetValue();
42 *shift_amount = instruction->AsUShr()->GetRight()->AsIntConstant()->GetValue();
dead_code_elimination.cc 50 if (condition->AsIntConstant()->IsTrue()) {
54 DCHECK(condition->AsIntConstant()->IsFalse()) << condition->AsIntConstant()->GetValue();
63 int32_t switch_value = switch_input->AsIntConstant()->GetValue();
136 return condition->Evaluate(left->AsIntConstant(), right->AsIntConstant());
370 if (value_to_check->AsIntConstant()->IsTrue()) {
373 DCHECK(value_to_check->AsIntConstant()->IsFalse())
374 << value_to_check->AsIntConstant()->GetValue();
constant_folding_test.cc 132 ASSERT_EQ(inst->AsIntConstant()->GetValue(), -1);
254 ASSERT_EQ(inst->AsIntConstant()->GetValue(), 3);
333 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 12);
336 ASSERT_EQ(inst2->AsIntConstant()->GetValue(), 9);
339 ASSERT_EQ(inst3->AsIntConstant()->GetValue(), 3);
404 ASSERT_EQ(inst->AsIntConstant()->GetValue(), 1);
631 ASSERT_EQ(inst1->AsIntConstant()->GetValue(), 20);
634 ASSERT_EQ(inst2->AsIntConstant()->GetValue(), 12);
637 ASSERT_EQ(inst3->AsIntConstant()->GetValue(), 7);
640 ASSERT_EQ(inst4->AsIntConstant()->GetValue(), 3)
    [all...]
bounds_check_elimination.cc 40 int32_t instr_const = instruction->AsIntConstant()->GetValue();
78 int32_t v = right->AsIntConstant()->GetValue();
98 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue());
114 return ValueBound(nullptr, instruction->AsIntConstant()->GetValue());
444 int32_t initial_constant = initial_->AsIntConstant()->GetValue();
    [all...]
instruction_simplifier.cc 762 if (input_const->AsIntConstant()->IsTrue()) {
767 } else if (input_const->AsIntConstant()->IsFalse()) {
794 if (input_const->AsIntConstant()->IsTrue()) {
799 } else if (input_const->AsIntConstant()->IsFalse()) {
    [all...]
instruction_simplifier_mips.cc 100 size_t another_component_shift = another_access->GetShift()->AsIntConstant()->GetValue();
common_arm.h 166 return instr->AsIntConstant()->GetValue();
185 return instr->AsIntConstant()->GetValue();
instruction_simplifier_shared.cc 314 uint32_t another_data_offset = another_access->GetOffset()->AsIntConstant()->GetValue();
315 size_t another_component_shift = another_access->GetShift()->AsIntConstant()->GetValue();
reference_type_propagation.cc 438 if (rhs->AsIntConstant()->IsTrue()) {
443 DCHECK(rhs->AsIntConstant()->IsFalse()) << rhs->AsIntConstant()->GetValue();
455 if (rhs->AsIntConstant()->IsFalse()) {
460 DCHECK(rhs->AsIntConstant()->IsTrue()) << rhs->AsIntConstant()->GetValue();
    [all...]
intrinsics_x86.cc 130 int32_t constant = src_pos.GetConstant()->AsIntConstant()->GetValue();
153 int32_t constant = dest_pos.GetConstant()->AsIntConstant()->GetValue();
    [all...]
intrinsics_arm64.cc     [all...]
intrinsics_x86_64.cc     [all...]
ssa_builder.cc 56 DCHECK_EQ(0, int_operand->AsIntConstant()->GetValue());
680 return GetFloatEquivalent(value->AsIntConstant());
689 if (value->IsIntConstant() && value->AsIntConstant()->GetValue() == 0) {
code_generator.h 489 return constant->AsIntConstant()->GetValue();
494 return constant->AsIntConstant()->GetValue();
499 return constant->AsIntConstant()->GetValue();
510 return constant->AsIntConstant()->GetValue();
    [all...]
code_generator_mips64.cc     [all...]
intrinsics_mips.cc     [all...]
intrinsics_mips64.cc     [all...]
code_generator_x86.cc     [all...]
code_generator_vector_arm_vixl.cc 596 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
626 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
656 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
    [all...]
code_generator.cc     [all...]
common_arm64.h 157 return instr->AsIntConstant()->GetValue();
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
constants.h 56 virtual IntConstant* AsIntConstant() { return nullptr; }
66 virtual const IntConstant* AsIntConstant() const { return nullptr; }
112 IntConstant* AsIntConstant() override { return this; }
113 const IntConstant* AsIntConstant() const override { return this; }
  /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 583 milliseconds

1 2