ir_function_inlining: Implement inlining in many more cases.

We still don't inline for control flow in the inlined function, and we
don't have any limits on what we will inline.
This commit is contained in:
Eric Anholt
2010-04-22 17:52:59 -07:00
committed by Ian Romanick
parent ec9e73870c
commit e8e9748722
4 changed files with 240 additions and 21 deletions

View File

@@ -34,6 +34,7 @@ glsl_SOURCES = \
ir_constant_folding.cpp \
ir_dead_code.cpp \
ir_expression_flattening.cpp \
ir_function_can_inline.cpp \
ir_function_inlining.cpp \
ir_if_simplification.cpp

227
ir_function_can_inline.cpp Normal file
View File

@@ -0,0 +1,227 @@
/*
* Copyright © 2010 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
/**
* \file ir_function_can_inline.cpp
*
* Determines if we can inline a function call using ir_function_inlining.cpp.
*
* The primary restriction is that we can't return from the function
* other than as the last instruction. We could potentially work
* around this for some constructs by flattening control flow and
* moving the return to the end, or by using breaks from a do {} while
* (0) loop surrounding the function body.
*/
#define NULL 0
#include "ir.h"
#include "ir_visitor.h"
#include "ir_function_inlining.h"
#include "ir_expression_flattening.h"
#include "glsl_types.h"
class ir_function_can_inline_visitor : public ir_visitor {
public:
ir_function_can_inline_visitor()
{
this->can_inline = true;
this->num_returns = 0;
}
/**
* \name Visit methods
*
* As typical for the visitor pattern, there must be one \c visit method for
* each concrete subclass of \c ir_instruction. Virtual base classes within
* the hierarchy should not have \c visit methods.
*/
/*@{*/
virtual void visit(ir_variable *);
virtual void visit(ir_label *);
virtual void visit(ir_loop *);
virtual void visit(ir_loop_jump *);
virtual void visit(ir_function_signature *);
virtual void visit(ir_function *);
virtual void visit(ir_expression *);
virtual void visit(ir_swizzle *);
virtual void visit(ir_dereference *);
virtual void visit(ir_assignment *);
virtual void visit(ir_constant *);
virtual void visit(ir_call *);
virtual void visit(ir_return *);
virtual void visit(ir_if *);
/*@}*/
bool can_inline;
int num_returns;
};
void
ir_function_can_inline_visitor::visit(ir_variable *ir)
{
(void)ir;
}
void
ir_function_can_inline_visitor::visit(ir_label *ir)
{
(void)ir;
}
void
ir_function_can_inline_visitor::visit(ir_loop *ir)
{
/* FINISHME: Implement loop cloning in ir_function_inlining.cpp */
this->can_inline = false;
if (ir->from)
ir->from->accept(this);
if (ir->to)
ir->to->accept(this);
if (ir->increment)
ir->increment->accept(this);
foreach_iter(exec_list_iterator, iter, ir->body_instructions) {
ir_instruction *inner_ir = (ir_instruction *)iter.get();
inner_ir->accept(this);
}
}
void
ir_function_can_inline_visitor::visit(ir_loop_jump *ir)
{
(void) ir;
}
void
ir_function_can_inline_visitor::visit(ir_function_signature *ir)
{
(void)ir;
}
void
ir_function_can_inline_visitor::visit(ir_function *ir)
{
(void) ir;
}
void
ir_function_can_inline_visitor::visit(ir_expression *ir)
{
unsigned int operand;
for (operand = 0; operand < ir->get_num_operands(); operand++) {
ir->operands[operand]->accept(this);
}
}
void
ir_function_can_inline_visitor::visit(ir_swizzle *ir)
{
ir->val->accept(this);
}
void
ir_function_can_inline_visitor::visit(ir_dereference *ir)
{
ir->var->accept(this);
if (ir->mode == ir_dereference::ir_reference_array)
ir->selector.array_index->accept(this);
}
void
ir_function_can_inline_visitor::visit(ir_assignment *ir)
{
ir->lhs->accept(this);
ir->rhs->accept(this);
if (ir->condition)
ir->condition->accept(this);
}
void
ir_function_can_inline_visitor::visit(ir_constant *ir)
{
(void)ir;
}
void
ir_function_can_inline_visitor::visit(ir_call *ir)
{
foreach_iter(exec_list_iterator, iter, *ir) {
ir_rvalue *param = (ir_rvalue *)iter.get();
param->accept(this);
}
}
void
ir_function_can_inline_visitor::visit(ir_return *ir)
{
ir->get_value()->accept(this);
this->num_returns++;
}
void
ir_function_can_inline_visitor::visit(ir_if *ir)
{
/* FINISHME: Implement if cloning in ir_function_inlining.cpp. */
this->can_inline = false;
ir->condition->accept(this);
foreach_iter(exec_list_iterator, iter, ir->then_instructions) {
ir_instruction *inner_ir = (ir_instruction *)iter.get();
inner_ir->accept(this);
}
foreach_iter(exec_list_iterator, iter, ir->else_instructions) {
ir_instruction *inner_ir = (ir_instruction *)iter.get();
inner_ir->accept(this);
}
}
bool
can_inline(ir_call *call)
{
ir_function_can_inline_visitor v;
const ir_function_signature *callee = call->get_callee();
foreach_iter(exec_list_iterator, iter, callee->body) {
ir_instruction *ir = (ir_instruction *)iter.get();
ir->accept(&v);
}
ir_instruction *last = (ir_instruction *)callee->body.get_tail();
if (last && !last->as_return())
v.num_returns++;
return v.can_inline && v.num_returns == 1;
}

View File

@@ -122,6 +122,9 @@ ir_function_cloning_visitor::visit(ir_variable *ir)
void
ir_function_cloning_visitor::visit(ir_loop *ir)
{
/* FINISHME: Implement loop cloning. */
assert(0);
(void)ir;
this->result = NULL;
}
@@ -129,6 +132,9 @@ ir_function_cloning_visitor::visit(ir_loop *ir)
void
ir_function_cloning_visitor::visit(ir_loop_jump *ir)
{
/* FINISHME: Implement loop cloning. */
assert(0);
(void) ir;
this->result = NULL;
}
@@ -137,6 +143,7 @@ ir_function_cloning_visitor::visit(ir_loop_jump *ir)
void
ir_function_cloning_visitor::visit(ir_function_signature *ir)
{
assert(0);
(void)ir;
this->result = NULL;
}
@@ -145,6 +152,7 @@ ir_function_cloning_visitor::visit(ir_function_signature *ir)
void
ir_function_cloning_visitor::visit(ir_function *ir)
{
assert(0);
(void) ir;
this->result = NULL;
}
@@ -274,31 +282,13 @@ ir_function_cloning_visitor::visit(ir_return *ir)
void
ir_function_cloning_visitor::visit(ir_if *ir)
{
/* FINISHME: Implement if cloning. */
assert(0);
(void) ir;
result = NULL;
}
bool
can_inline(ir_call *call)
{
bool found_return = false;
/* FINISHME: Right now we only allow a single statement that is a return.
*/
foreach_iter(exec_list_iterator, iter, call->get_callee()->body) {
ir_instruction *ir = (ir_instruction *)iter.get();
if (ir->get_next()->get_next() != NULL)
return false;
if (!ir->as_return())
return false;
found_return = true;
}
return found_return;
}
bool
automatic_inlining_predicate(ir_instruction *ir)
{

View File

@@ -64,3 +64,4 @@ public:
};
bool do_function_inlining(exec_list *instructions);
bool can_inline(ir_call *call);