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

1 2

  /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();
nodes_x86.h 52 return InputAt(1)->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();
common_arm64.h 146 if (input->IsConstant() && input->AsConstant()->IsZeroBitPattern()) {
288 && Arm64CanEncodeConstantAsImmediate(constant->AsConstant(), instr)) {
289 return Location::ConstantLocation(constant->AsConstant());
356 return instruction->IsConstant() && instruction->AsConstant()->IsZeroBitPattern();
scheduler_arm.cc 109 uint64_t rot = Uint64ConstantFrom(rhs->AsConstant()) & kMaxLongShiftDistance;
143 uint32_t shift_value = Int32ConstantFrom(rhs->AsConstant()) & kMaxLongShiftDistance;
505 int32_t imm = Int32ConstantFrom(rhs->AsConstant());
568 int32_t imm = Int32ConstantFrom(rhs->AsConstant());
instruction_simplifier_shared.cc 55 input_binop->GetRight()->AsConstant()->IsMinusOne()) {
63 input_binop->GetLeft()->AsConstant()->IsOne()) {
scheduler_arm64.cc 92 int64_t imm = Int64FromConstant(instr->GetRight()->AsConstant());
160 int64_t imm = Int64FromConstant(instruction->GetRight()->AsConstant());
instruction_simplifier.cc 262 int64_t cst = Int64FromConstant(shift_amount->AsConstant());
307 (Int64FromConstant(sub->GetLeft()->AsConstant()) & (reg_bits - 1)) == 0);
375 size_t rdist = Int64FromConstant(ushr->GetRight()->AsConstant());
376 size_t ldist = Int64FromConstant(shl->GetRight()->AsConstant());
    [all...]
common_arm.h 196 return instr->AsConstant()->GetValueAsUint64();
code_generator_vector_arm64.cc 53 Arm64CanEncodeConstantAsImmediate(input->AsConstant(), instruction)) {
54 locations->SetInAt(0, Location::ConstantLocation(input->AsConstant()));
698 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
    [all...]
graph_checker.cc 704 return insn1->AsConstant()->GetValueAsUint64() == insn2->AsConstant()->GetValueAsUint64();
    [all...]
code_generator_mips64.cc     [all...]
code_generator_arm64.cc     [all...]
code_generator_arm_vixl.cc     [all...]
code_generator_vector_arm_vixl.cc 528 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
intrinsics_x86_64.cc     [all...]
code_generator_mips.cc     [all...]
code_generator_vector_mips.cc 713 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
    [all...]
code_generator_vector_mips64.cc 717 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
    [all...]
code_generator_vector_x86.cc 730 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
    [all...]
code_generator_vector_x86_64.cc 723 locations->SetInAt(1, Location::ConstantLocation(instruction->InputAt(1)->AsConstant()));
    [all...]
intrinsics_x86.cc     [all...]
  /external/v8/src/ast/
ast-types.cc 85 if (this->IsConstant()) return this->AsConstant()->Value()->Number();
101 if (this->IsConstant()) return this->AsConstant()->Value()->Number();
143 if (type->IsConstant()) return type->AsConstant()->Lub();
457 *this->AsConstant()->Value() == *that->AsConstant()->Value();
558 Contains(that->AsRange(), this->AsConstant()));
593 i::Object* object = *this->AsConstant()->Value();
651 return Contains(this->AsRange(), that->AsConstant());
873 if (rhs->IsConstant() && Contains(lhs->AsRange(), rhs->AsConstant())) {
    [all...]
ast-types.h 829 AstConstantType* AsConstant() { return AstConstantType::cast(this); }
    [all...]

Completed in 731 milliseconds

1 2