Home
last modified time | relevance | path

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

/external/v8/src/crankshaft/
Dtyping.cc209 Type* combined_type; in VisitSwitchStatement() local
211 &tag_type, &label_type, &combined_type); in VisitSwitchStatement()
214 clause->set_compare_type(combined_type); in VisitSwitchStatement()
741 Type* combined_type; in VisitCompareOperation() local
743 &left_type, &right_type, &combined_type); in VisitCompareOperation()
746 expr->set_combined_type(combined_type); in VisitCompareOperation()
Dhydrogen.cc5057 Type* combined_type = clause->compare_type(); in VisitSwitchStatement() local
5060 combined_type, in VisitSwitchStatement()
11454 Type* combined_type = expr->combined_type(); in VisitCompareOperation() local
11503 op, left, right, left_type, right_type, combined_type, in VisitCompareOperation()
11514 Type* right_type, Type* combined_type, SourcePosition left_position, in BuildCompareInstruction() argument
11519 if (!combined_type->IsInhabited()) { in BuildCompareInstruction()
11523 combined_type = left_type = right_type = Type::Any(zone()); in BuildCompareInstruction()
11528 Representation combined_rep = RepresentationFor(combined_type); in BuildCompareInstruction()
11530 if (combined_type->Is(Type::Receiver())) { in BuildCompareInstruction()
11546 if (combined_type->IsClass()) { in BuildCompareInstruction()
[all …]
Dhydrogen.h2750 Type* right_type, Type* combined_type, SourcePosition left_position,
/external/v8/src/
Dtype-info.cc199 Type** combined_type) { in CompareType() argument
203 *left_type = *right_type = *combined_type = Type::None(zone()); in CompareType()
216 *combined_type = CompareICState::StateToType(zone(), stub.state(), map); in CompareType()
219 *combined_type = stub.GetType(zone(), map); in CompareType()
/external/v8/src/ast/
Dast.h2337 Type* combined_type() const { return combined_type_; } in combined_type() function