Home
last modified time | relevance | path

Searched refs:combined_type (Results 1 – 5 of 5) sorted by relevance

/external/v8/src/
Dtyping.cc216 Type* combined_type; in VisitSwitchStatement() local
218 &tag_type, &label_type, &combined_type); in VisitSwitchStatement()
221 clause->set_compare_type(combined_type); in VisitSwitchStatement()
711 Type* combined_type; in VisitCompareOperation() local
713 &left_type, &right_type, &combined_type); in VisitCompareOperation()
716 expr->set_combined_type(combined_type); in VisitCompareOperation()
Dtype-info.cc179 Type** combined_type) { in CompareType() argument
183 *left_type = *right_type = *combined_type = Type::None(zone()); in CompareType()
201 *combined_type = CompareICState::StateToType(zone(), stub.state(), map); in CompareType()
204 *combined_type = stub.GetType(zone(), map); in CompareType()
Dhydrogen.cc4860 Type* combined_type = clause->compare_type(); in VisitSwitchStatement() local
4863 combined_type, in VisitSwitchStatement()
10701 Type* combined_type = expr->combined_type(); in VisitCompareOperation() local
10767 op, left, right, left_type, right_type, combined_type, in VisitCompareOperation()
10782 Type* combined_type, in BuildCompareInstruction() argument
10789 if (!combined_type->IsInhabited()) { in BuildCompareInstruction()
10793 combined_type = left_type = right_type = Type::Any(zone()); in BuildCompareInstruction()
10798 Representation combined_rep = Representation::FromType(combined_type); in BuildCompareInstruction()
10800 if (combined_type->Is(Type::Receiver())) { in BuildCompareInstruction()
10816 if (combined_type->IsClass()) { in BuildCompareInstruction()
[all …]
Dhydrogen.h2582 Type* combined_type,
Dast.h2104 Type* combined_type() const { return combined_type_; } in combined_type() function