Home
last modified time | relevance | path

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

/external/v8/src/
Dtype-info.cc226 AstType** combined_type) { in CompareType() argument
233 *left_type = *right_type = *combined_type = AstType::None(); in CompareType()
242 *left_type = *right_type = *combined_type = in CompareType()
274 *combined_type = combined_type_from_ic; in CompareType()
279 *combined_type = in CompareType()
280 AstType::Union(*combined_type, combined_type_from_ic, zone()); in CompareType()
/external/v8/src/crankshaft/
Dtyping.cc210 AstType* combined_type; in VisitSwitchStatement() local
213 &label_type, &combined_type); in VisitSwitchStatement()
216 clause->set_compare_type(combined_type); in VisitSwitchStatement()
736 AstType* combined_type; in VisitCompareOperation() local
739 &right_type, &combined_type); in VisitCompareOperation()
742 expr->set_combined_type(combined_type); in VisitCompareOperation()
Dhydrogen.cc4571 AstType* combined_type = clause->compare_type(); in VisitSwitchStatement() local
4574 combined_type, in VisitSwitchStatement()
11240 AstType* combined_type = expr->combined_type(); in VisitCompareOperation() local
11318 op, left, right, left_type, right_type, combined_type, in VisitCompareOperation()
11328 AstType* right_type, AstType* combined_type, SourcePosition left_position, in BuildCompareInstruction() argument
11333 if (!combined_type->IsInhabited()) { in BuildCompareInstruction()
11338 combined_type = left_type = right_type = AstType::Any(); in BuildCompareInstruction()
11343 Representation combined_rep = RepresentationFor(combined_type); in BuildCompareInstruction()
11345 if (combined_type->Is(AstType::Receiver())) { in BuildCompareInstruction()
11361 if (combined_type->IsClass()) { in BuildCompareInstruction()
[all …]
Dhydrogen.h2671 AstType* right_type, AstType* combined_type, SourcePosition left_position,
/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y1252 int combined_type; in _token_paste() local
1285 combined_type = token->type; in _token_paste()
1286 if (combined_type == INTEGER) in _token_paste()
1287 combined_type = INTEGER_STRING; in _token_paste()
1289 combined = _token_create_str (parser, combined_type, str); in _token_paste()
/external/v8/src/ast/
Dast.h2270 AstType* combined_type() const { return combined_type_; } in combined_type() function