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

  /art/compiler/optimizing/
locations.cc 54 ? Location::ConstantLocation(instruction->AsConstant())
59 HConstant* constant = instruction->AsConstant();
70 HConstant* constant = instruction->AsConstant();
82 ? Location::ConstantLocation(instruction->AsConstant())
88 ? Location::ConstantLocation(instruction->AsConstant())
constant_folding.cc 126 if (check_input->IsConstant() && !check_input->AsConstant()->IsArithmeticZero()) {
136 if (left->IsConstant() && left->AsConstant()->IsArithmeticZero()) {
172 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
184 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
196 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
208 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
294 instruction->GetLeft()->AsConstant()->IsArithmeticZero()) {
303 HConstant* cst_right = instruction->GetRight()->AsConstant();
pc_relative_fixups_x86.cc 65 HConstant* value = ret->InputAt(0)->AsConstant();
102 HConstant* rhs = bin->InputAt(1)->AsConstant();
225 HConstant* input = inputs[i]->AsConstant();
nodes_x86.h 52 return InputAt(1)->AsConstant();
scheduler_arm64.cc 84 int64_t imm = Int64FromConstant(instr->GetRight()->AsConstant());
152 int64_t imm = Int64FromConstant(instruction->GetRight()->AsConstant());
common_arm64.h 146 if (input->IsConstant() && input->AsConstant()->IsZeroBitPattern()) {
279 && CanEncodeConstantAsImmediate(constant->AsConstant(), instr)) {
280 return Location::ConstantLocation(constant->AsConstant());
347 return instruction->IsConstant() && instruction->AsConstant()->IsZeroBitPattern();
instruction_simplifier_shared.cc 53 input_binop->GetRight()->AsConstant()->IsMinusOne()) {
61 input_binop->GetLeft()->AsConstant()->IsOne()) {
common_arm.h 196 return instr->AsConstant()->GetValueAsUint64();
instruction_simplifier.cc 259 int64_t cst = Int64FromConstant(shift_amount->AsConstant());
292 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0);
360 size_t rdist = Int64FromConstant(ushr->GetRight()->AsConstant());
361 size_t ldist = Int64FromConstant(shl->GetRight()->AsConstant());
    [all...]
code_generator_mips64.cc     [all...]
code_generator_arm.cc     [all...]
graph_checker.cc 698 return insn1->AsConstant()->GetValueAsUint64() == insn2->AsConstant()->GetValueAsUint64();
    [all...]
code_generator_vector_x86.cc 641 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
code_generator_vector_x86_64.cc 630 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
intrinsics_x86_64.cc     [all...]
code_generator_arm64.cc     [all...]
code_generator_mips.cc     [all...]
code_generator_vector_arm64.cc 577 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
code_generator_arm_vixl.cc     [all...]
intrinsics_x86.cc     [all...]
nodes.cc     [all...]
inliner.cc     [all...]
code_generator_x86.cc     [all...]
  /external/v8/src/ast/
ast-types.cc 84 if (this->IsConstant()) return this->AsConstant()->Value()->Number();
100 if (this->IsConstant()) return this->AsConstant()->Value()->Number();
142 if (type->IsConstant()) return type->AsConstant()->Lub();
456 *this->AsConstant()->Value() == *that->AsConstant()->Value();
557 Contains(that->AsRange(), this->AsConstant()));
592 i::Object* object = *this->AsConstant()->Value();
650 return Contains(this->AsRange(), that->AsConstant());
872 if (rhs->IsConstant() && Contains(lhs->AsRange(), rhs->AsConstant())) {
    [all...]
ast-types.h 836 AstConstantType* AsConstant() { return AstConstantType::cast(this); }
    [all...]

Completed in 769 milliseconds