Home
last modified time | relevance | path

Searched refs:subexpressions (Results 1 – 25 of 41) sorted by relevance

12

/external/mesa3d/src/compiler/glsl/
Dir_reader.cpp174 foreach_in_list(s_list, sub, &list->subexpressions) { in scan_for_prototypes()
178 s_symbol *tag = SX_AS_SYMBOL(sub->subexpressions.get_head()); in scan_for_prototypes()
211 exec_node *node = ((s_list *) expr)->subexpressions.get_head_raw()->next->next; in read_function()
243 s_symbol *paramtag = SX_AS_SYMBOL(paramlist->subexpressions.get_head()); in read_function_sig()
254 exec_node *node = paramlist->subexpressions.get_head_raw()->next; in read_function_sig()
295 if (!skip_body && !body_list->subexpressions.is_empty()) { in read_function_sig()
320 foreach_in_list(s_expression, sub, &list->subexpressions) { in read_instructions()
349 if (list == NULL || list->subexpressions.is_empty()) { in read_instruction()
354 s_symbol *tag = SX_AS_SYMBOL(list->subexpressions.get_head()); in read_instruction()
409 foreach_in_list(s_symbol, qualifier, &s_quals->subexpressions) { in read_declaration()
[all …]
Dast_expr.cpp92 subexpressions[0]->print(); in print()
94 subexpressions[1]->print(); in print()
Ds_expression.cpp115 list->subexpressions.push_tail(expr); in __read_expression()
166 foreach_in_list(s_expression, expr, &this->subexpressions) { in print()
204 foreach_in_list(s_expression, expr, &list->subexpressions) { in s_match()
Dast_to_hir.cpp1196 ast_expression *expr = parent_expr->subexpressions[operand]; in get_scalar_boolean_operand()
1321 if (this->subexpressions[0] != NULL) in set_is_lhs()
1322 this->subexpressions[0]->set_is_lhs(new_value); in set_is_lhs()
1401 this->subexpressions[0]->set_is_lhs(true); in do_hir()
1402 op[0] = this->subexpressions[0]->hir(instructions, state); in do_hir()
1403 op[1] = this->subexpressions[1]->hir(instructions, state); in do_hir()
1407 this->subexpressions[0]->non_lvalue_description, in do_hir()
1409 this->subexpressions[0]->get_location()); in do_hir()
1414 op[0] = this->subexpressions[0]->hir(instructions, state); in do_hir()
1424 op[0] = this->subexpressions[0]->hir(instructions, state); in do_hir()
[all …]
Dglsl_parser_extras.cpp1199 subexpressions[0]->print(); in print()
1201 subexpressions[1]->print(); in print()
1205 subexpressions[0]->print(); in print()
1216 subexpressions[0]->print(); in print()
1221 subexpressions[0]->print(); in print()
1226 subexpressions[0]->print(); in print()
1228 subexpressions[1]->print(); in print()
1230 subexpressions[2]->print(); in print()
1234 subexpressions[0]->print(); in print()
1236 subexpressions[1]->print(); in print()
[all …]
Dast_function.cpp665 array->subexpressions[0], in generate_array_index()
666 array->subexpressions[1], in generate_array_index()
1905 const ast_expression *field = subexpressions[0]; in handle_method()
1919 field->subexpressions[0]->set_is_lhs(true); in handle_method()
1920 op = field->subexpressions[0]->hir(instructions, state); in handle_method()
1993 (ast_type_specifier *) subexpressions[0]; in hir()
2274 } else if (subexpressions[0]->oper == ast_field_selection) { in hir()
2277 const ast_expression *id = subexpressions[0]; in hir()
2289 id->subexpressions[0], in hir()
2290 id->subexpressions[1], &func_name, in hir()
Dast.h225 subexpressions[0] = NULL; in ast_expression()
226 subexpressions[1] = NULL; in ast_expression()
227 subexpressions[2] = NULL; in ast_expression()
251 ast_expression *subexpressions[3]; variable
Dhir_field_selection.cpp38 op = expr->subexpressions[0]->hir(instructions, state); in _mesa_ast_field_selection_to_hir()
Ds_expression.h144 exec_list subexpressions; variable
/external/llvm/test/Transforms/Reassociate/
Dxor_reassoc.ll169 ; swap the two xor-subexpressions if they are not in canoninical order; however,
/external/llvm/docs/
DLexicon.rst60 subexpression compuation. For example ``(a+b)*(a+b)`` has two subexpressions
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dlsr-delayed-fold.ll137 ; there could be multiple subexpressions within a single expansion which
/external/llvm/test/CodeGen/X86/
Dlsr-delayed-fold.ll137 ; there could be multiple subexpressions within a single expansion which
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dlsr-delayed-fold.ll137 ; there could be multiple subexpressions within a single expansion which
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Reassociate/
Dxor_reassoc.ll270 ; swap the two xor-subexpressions if they are not in canoninical order; however,
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DLexicon.rst67 subexpression compuation. For example ``(a+b)*(a+b)`` has two subexpressions
/external/clang/docs/
DInternalsManual.rst1958 * Your expression probably involves some types and some subexpressions.
1960 subexpressions, meet your expectations. Add implicit conversions where
1964 subexpressions with your expression.
1974 to deal with "weird" expressions that don't behave well as subexpressions.
1995 * Make sure that ``children()`` visits all of the subexpressions. This is
2042 subexpressions of your expression have the type that your expression
2071 subexpressions.
2074 transform all of the subexpressions and types within your expression,
2075 using ``getDerived().TransformYYY``. If all of the subexpressions and
2092 other than subexpressions, extend libclang's ``CursorVisitor`` to provide
DPCHInternals.rst332 size). Within the AST file, the subexpressions of an expression are stored, in
354 that expression on to a stack. When a record contains *N* subexpressions ---
/external/swiftshader/third_party/llvm-7.0/llvm/docs/tutorial/
DLangImpl02.rst407 about nested subexpressions like (c+d) at all.
/external/swiftshader/third_party/LLVM/lib/Support/
Dregengine.inc208 /* oh my, he wants the subexpressions... */
/external/llvm/docs/tutorial/
DLangImpl02.rst405 about nested subexpressions like (c+d) at all.
DLangImpl05.rst109 The AST node just has pointers to the various subexpressions.
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Dregengine.inc208 /* oh my, they want the subexpressions... */
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Dregengine.inc208 /* oh my, they want the subexpressions... */
/external/llvm/lib/Support/
Dregengine.inc208 /* oh my, they want the subexpressions... */

12