HomeSort by relevance Sort by last modified time
    Searched defs:bound_type (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
reference_type_propagation.cc 217 HBoundType* bound_type = nullptr; local
231 if (bound_type == nullptr) {
238 bound_type = new (receiver->GetBlock()->GetGraph()->GetArena()) HBoundType(receiver);
239 bound_type->SetUpperBound(class_rti, /* bound_can_be_null */ false);
240 start_block->InsertInstructionBefore(bound_type, insert_point);
250 user->ReplaceInput(bound_type, index);
708 HBoundType* bound_type = check_cast->GetNext()->AsBoundType(); local
709 if (bound_type == nullptr || bound_type->GetUpperBound().IsValid()) {
714 DCHECK_EQ(bound_type->InputAt(0), check_cast->InputAt(0))
958 HBoundType* bound_type = instr->AsBoundType(); local
    [all...]
  /external/v8/src/compiler/
typer.cc 728 Type* bound_type = TypeOrNone(bound.bound); local
730 if (!bound_type->Is(typer_->cache_.kInteger)) continue;
732 if (!bound_type->IsInhabited()) {
736 double bound_max = bound_type->Max();
748 Type* bound_type = TypeOrNone(bound.bound); local
750 if (!bound_type->Is(typer_->cache_.kInteger)) continue;
752 if (!bound_type->IsInhabited()) {
756 double bound_min = bound_type->Min();
    [all...]

Completed in 159 milliseconds