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

  /art/compiler/optimizing/
prepare_for_register_allocation.h 42 void VisitBoundType(HBoundType* bound_type) OVERRIDE;
prepare_for_register_allocation.cc 67 void PrepareForRegisterAllocation::VisitBoundType(HBoundType* bound_type) {
68 bound_type->ReplaceWith(bound_type->InputAt(0));
69 bound_type->GetBlock()->RemoveInstruction(bound_type);
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...]
reference_type_propagation.h 90 void UpdateBoundType(HBoundType* bound_type) REQUIRES_SHARED(Locks::mutator_lock_);
  /external/v8/src/compiler/
typer.cc 716 Type* bound_type = TypeOrNone(bound.bound); local
718 if (!bound_type->Is(typer_->cache_.kInteger)) continue;
720 if (!bound_type->IsInhabited()) {
724 double bound_max = bound_type->Max();
736 Type* bound_type = TypeOrNone(bound.bound); local
738 if (!bound_type->Is(typer_->cache_.kInteger)) continue;
740 if (!bound_type->IsInhabited()) {
744 double bound_min = bound_type->Min();
    [all...]

Completed in 99 milliseconds