HomeSort by relevance Sort by last modified time
    Searched refs:then_instructions (Results 1 - 25 of 30) sorted by null

1 2

  /external/mesa3d/src/compiler/glsl/
opt_conditional_discard.cpp 67 if (ir->then_instructions.is_empty() ||
68 !ir->then_instructions.get_head_raw()->next->is_tail_sentinel() ||
69 !((ir_instruction *) ir->then_instructions.get_head_raw())->as_discard() ||
74 ir_discard *discard = (ir_discard *) ir->then_instructions.get_head_raw();
opt_flatten_nested_if_blocks.cpp 90 if (ir->then_instructions.is_empty() || !ir->else_instructions.is_empty())
93 ir_if *inner = ((ir_instruction *) ir->then_instructions.get_head_raw())->as_if();
99 inner->then_instructions.move_nodes_to(&ir->then_instructions);
opt_if_simplification.cpp 75 if (ir->then_instructions.is_empty() &&
93 ir->insert_before(&ir->then_instructions);
118 if (ir->then_instructions.is_empty()) {
121 ir->else_instructions.move_nodes_to(&ir->then_instructions);
opt_redundant_jumps.cpp 66 (ir_instruction *) ir->then_instructions.get_tail();
92 if (ir->then_instructions.is_empty() && ir->else_instructions.is_empty())
ir_basic_block.cpp 71 call_for_basic_blocks(&ir_if->then_instructions, callback, data);
lower_jumps.cpp 389 (ir_instruction *) ir_if->then_instructions.get_tail());
532 * unconditional jumps at the end of ir->then_instructions and
535 block_records[0] = visit_block(&ir->then_instructions);
540 /* Determine which of ir->then_instructions and
544 exec_list& list = i ? ir->else_instructions : ir->then_instructions;
551 * postcondition by lowering jumps in both then_instructions and
556 * ir->then_instructions and ir->else_instructions.
767 exec_list* list = move_into ? &ir->else_instructions : &ir->then_instructions;
808 ir_after->insert_before(&ir_if->then_instructions);
826 move_outer_block_inside(ir, &if_execute->then_instructions);
    [all...]
lower_discard.cpp 170 ir_discard *then_discard = find_discard(ir->then_instructions);
lower_discard_flow.cpp 135 if_inst->then_instructions.push_tail(br);
loop_unroll.cpp 259 ? &ir_if->then_instructions : &ir_if->else_instructions;
277 * (...then_instructions...
286 * (...then_instructions...
415 (ir_instruction *) ir_if->then_instructions.get_tail();
429 splice_post_if_instructions(ir_if, &ir_if->then_instructions);
lower_if_to_cond_assign.cpp 246 foreach_in_list(ir_instruction, then_ir, &ir->then_instructions) {
291 &ir->then_instructions,
ir_clone.cpp 118 foreach_in_list(ir_instruction, ir, &this->then_instructions) {
119 new_if->then_instructions.push_tail(ir->clone(mem_ctx, ht));
lower_variable_index_to_cond_assign.cpp 316 generate(begin, middle, &if_less->then_instructions);
528 sg.generate(0, length, &if_stmt->then_instructions);
opt_copy_propagation.cpp 263 handle_if_block(&ir->then_instructions);
opt_vectorize.cpp 331 visit_list_elements(this, &ir->then_instructions);
ir_builder.cpp 598 result->then_instructions.push_tail(then_branch);
613 result->then_instructions.push_tail(then_branch);
lower_blend_equation_advanced.cpp 290 if_blending->then_instructions.push_tail(assign(result, src));
335 casefactory.instructions = &iff->then_instructions;
opt_constant_propagation.cpp 392 handle_if_block(&ir->then_instructions);
ir_hv_accept.cpp 392 s = visit_list_elements(v, &this->then_instructions);
loop_analysis.cpp 620 (ir_instruction *) ir->then_instructions.get_head();
opt_copy_propagation_elements.cpp 434 handle_if_block(&ir->then_instructions);
ast_to_hir.cpp 1772 exec_list then_instructions; local
    [all...]
ir_builder_print_visitor.cpp 629 print_with_indent("body.instructions = &f%04X->then_instructions;\n\n",
633 s = visit_list_elements(this, &ir->then_instructions);
ir_constant_expression.cpp 902 exec_list &branch = cond->get_bool_component(0) ? iif->then_instructions : iif->else_instructions;
ir_print_visitor.cpp 552 foreach_in_list(ir_instruction, inst, &ir->then_instructions) {
ir.h 1366 exec_list then_instructions; member in class:ir_if
    [all...]

Completed in 203 milliseconds

1 2