mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-28 14:24:43 +08:00
tree-ssa-sccvn.h (vn_binary_op_lookup): Remove.
2008-03-08 Richard Guenther <rguenther@suse.de> * tree-ssa-sccvn.h (vn_binary_op_lookup): Remove. (vn_binary_op_insert): Likewise. (vn_unary_op_lookup): Likewise. (vn_unary_op_insert): Likewise. (vn_nary_op_lookup): Declare. (vn_nary_op_insert): Likewise. * tree-ssa-sccvn.c (struct vn_tables_s): Merge unary and binary hashes, use a single obstack for unary_op_pool and binary_op_pool. (struct vn_binary_op_s, struct vn_unary_op_s): Replace with a single struct vn_nary_op_s. Store tree code length and a variable number of operands. (struct vn_reference_op_struct): Remove unused op2. (vn_reference_op_eq): Do not compare op2. (vn_reference_op_compute_hash): Do not compute hash of op2. (vn_unary_op_hash, vn_binary_op_hash): Replace with vn_nary_op_hash. (vn_unary_op_compute_hash, vn_binary_op_compute_hash): Replace with vn_nary_op_compute_hash. (vn_unary_op_eq, vn_binary_op_eq): Replace with vn_nary_op_eq. (vn_unary_op_lookup, vn_binary_op_lookup): Replace with vn_nary_op_lookup. (vn_unary_op_insert, vn_binary_op_insert): Replace with vn_nary_op_insert. (visit_unary_op): Call nary functions. (visit_binary_op): Likewise. (process_scc): Adjust for struct vn_tables_s changes. (allocate_vn_table): Likewise. (free_vn_table): Likewise. * tree-vn.c (vn_add): Call nary functions. (vn_lookup): Likewise. From-SVN: r133038
This commit is contained in:
parent
ba4698e168
commit
49a1fb2d5f
@ -1,3 +1,36 @@
|
||||
2008-03-08 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* tree-ssa-sccvn.h (vn_binary_op_lookup): Remove.
|
||||
(vn_binary_op_insert): Likewise.
|
||||
(vn_unary_op_lookup): Likewise.
|
||||
(vn_unary_op_insert): Likewise.
|
||||
(vn_nary_op_lookup): Declare.
|
||||
(vn_nary_op_insert): Likewise.
|
||||
* tree-ssa-sccvn.c (struct vn_tables_s): Merge unary
|
||||
and binary hashes, use a single obstack for unary_op_pool
|
||||
and binary_op_pool.
|
||||
(struct vn_binary_op_s, struct vn_unary_op_s): Replace with
|
||||
a single struct vn_nary_op_s. Store tree code length and
|
||||
a variable number of operands.
|
||||
(struct vn_reference_op_struct): Remove unused op2.
|
||||
(vn_reference_op_eq): Do not compare op2.
|
||||
(vn_reference_op_compute_hash): Do not compute hash of op2.
|
||||
(vn_unary_op_hash, vn_binary_op_hash): Replace with vn_nary_op_hash.
|
||||
(vn_unary_op_compute_hash, vn_binary_op_compute_hash): Replace
|
||||
with vn_nary_op_compute_hash.
|
||||
(vn_unary_op_eq, vn_binary_op_eq): Replace with vn_nary_op_eq.
|
||||
(vn_unary_op_lookup, vn_binary_op_lookup): Replace with
|
||||
vn_nary_op_lookup.
|
||||
(vn_unary_op_insert, vn_binary_op_insert): Replace with
|
||||
vn_nary_op_insert.
|
||||
(visit_unary_op): Call nary functions.
|
||||
(visit_binary_op): Likewise.
|
||||
(process_scc): Adjust for struct vn_tables_s changes.
|
||||
(allocate_vn_table): Likewise.
|
||||
(free_vn_table): Likewise.
|
||||
* tree-vn.c (vn_add): Call nary functions.
|
||||
(vn_lookup): Likewise.
|
||||
|
||||
2008-03-08 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/35498
|
||||
|
@ -107,45 +107,29 @@ along with GCC; see the file COPYING3. If not see
|
||||
|
||||
typedef struct vn_tables_s
|
||||
{
|
||||
htab_t unary;
|
||||
htab_t binary;
|
||||
htab_t nary;
|
||||
htab_t phis;
|
||||
htab_t references;
|
||||
alloc_pool unary_op_pool;
|
||||
alloc_pool binary_op_pool;
|
||||
struct obstack nary_obstack;
|
||||
alloc_pool phis_pool;
|
||||
alloc_pool references_pool;
|
||||
} *vn_tables_t;
|
||||
|
||||
/* Binary operations in the hashtable consist of two operands, an
|
||||
/* Nary operations in the hashtable consist of length operands, an
|
||||
opcode, and a type. Result is the value number of the operation,
|
||||
and hashcode is stored to avoid having to calculate it
|
||||
repeatedly. */
|
||||
|
||||
typedef struct vn_binary_op_s
|
||||
typedef struct vn_nary_op_s
|
||||
{
|
||||
enum tree_code opcode;
|
||||
ENUM_BITFIELD(tree_code) opcode : 16;
|
||||
unsigned length : 16;
|
||||
hashval_t hashcode;
|
||||
tree type;
|
||||
tree op0;
|
||||
tree op1;
|
||||
tree result;
|
||||
} *vn_binary_op_t;
|
||||
typedef const struct vn_binary_op_s *const_vn_binary_op_t;
|
||||
|
||||
/* Unary operations in the hashtable consist of a single operand, an
|
||||
opcode, and a type. Result is the value number of the operation,
|
||||
and hashcode is stored to avoid having to calculate it repeatedly. */
|
||||
|
||||
typedef struct vn_unary_op_s
|
||||
{
|
||||
enum tree_code opcode;
|
||||
hashval_t hashcode;
|
||||
tree type;
|
||||
tree op0;
|
||||
tree result;
|
||||
} *vn_unary_op_t;
|
||||
typedef const struct vn_unary_op_s *const_vn_unary_op_t;
|
||||
tree op[4];
|
||||
} *vn_nary_op_t;
|
||||
typedef const struct vn_nary_op_s *const_vn_nary_op_t;
|
||||
|
||||
/* Phi nodes in the hashtable consist of their non-VN_TOP phi
|
||||
arguments, and the basic block the phi is in. Result is the value
|
||||
@ -174,7 +158,6 @@ typedef struct vn_reference_op_struct
|
||||
tree type;
|
||||
tree op0;
|
||||
tree op1;
|
||||
tree op2;
|
||||
} vn_reference_op_s;
|
||||
typedef vn_reference_op_s *vn_reference_op_t;
|
||||
typedef const vn_reference_op_s *const_vn_reference_op_t;
|
||||
@ -315,8 +298,7 @@ vn_reference_op_eq (const void *p1, const void *p2)
|
||||
return vro1->opcode == vro2->opcode
|
||||
&& vro1->type == vro2->type
|
||||
&& expressions_equal_p (vro1->op0, vro2->op0)
|
||||
&& expressions_equal_p (vro1->op1, vro2->op1)
|
||||
&& expressions_equal_p (vro1->op2, vro2->op2);
|
||||
&& expressions_equal_p (vro1->op1, vro2->op1);
|
||||
}
|
||||
|
||||
/* Compute the hash for a reference operand VRO1 */
|
||||
@ -325,8 +307,7 @@ static hashval_t
|
||||
vn_reference_op_compute_hash (const vn_reference_op_t vro1)
|
||||
{
|
||||
return iterative_hash_expr (vro1->op0, vro1->opcode)
|
||||
+ iterative_hash_expr (vro1->op1, vro1->opcode)
|
||||
+ iterative_hash_expr (vro1->op2, vro1->opcode);
|
||||
+ iterative_hash_expr (vro1->op1, vro1->opcode);
|
||||
}
|
||||
|
||||
/* Return the hashcode for a given reference operation P1. */
|
||||
@ -723,118 +704,61 @@ vn_reference_insert (tree op, tree result, VEC (tree, gc) *vuses)
|
||||
*slot = vr1;
|
||||
}
|
||||
|
||||
|
||||
/* Return the stored hashcode for a unary operation. */
|
||||
|
||||
static hashval_t
|
||||
vn_unary_op_hash (const void *p1)
|
||||
{
|
||||
const_vn_unary_op_t const vuo1 = (const_vn_unary_op_t) p1;
|
||||
return vuo1->hashcode;
|
||||
}
|
||||
|
||||
/* Hash a unary operation P1 and return the result. */
|
||||
/* Compute and return the hash value for nary operation VBO1. */
|
||||
|
||||
static inline hashval_t
|
||||
vn_unary_op_compute_hash (const vn_unary_op_t vuo1)
|
||||
vn_nary_op_compute_hash (const vn_nary_op_t vno1)
|
||||
{
|
||||
return iterative_hash_expr (vuo1->op0, vuo1->opcode);
|
||||
hashval_t hash = 0;
|
||||
unsigned i;
|
||||
|
||||
for (i = 0; i < vno1->length; ++i)
|
||||
if (TREE_CODE (vno1->op[i]) == SSA_NAME)
|
||||
vno1->op[i] = SSA_VAL (vno1->op[i]);
|
||||
|
||||
if (vno1->length == 2
|
||||
&& commutative_tree_code (vno1->opcode)
|
||||
&& tree_swap_operands_p (vno1->op[0], vno1->op[1], false))
|
||||
{
|
||||
tree temp = vno1->op[0];
|
||||
vno1->op[0] = vno1->op[1];
|
||||
vno1->op[1] = temp;
|
||||
}
|
||||
|
||||
for (i = 0; i < vno1->length; ++i)
|
||||
hash += iterative_hash_expr (vno1->op[i], vno1->opcode);
|
||||
|
||||
return hash;
|
||||
}
|
||||
|
||||
/* Return true if P1 and P2, two unary operations, are equivalent. */
|
||||
|
||||
static int
|
||||
vn_unary_op_eq (const void *p1, const void *p2)
|
||||
{
|
||||
const_vn_unary_op_t const vuo1 = (const_vn_unary_op_t) p1;
|
||||
const_vn_unary_op_t const vuo2 = (const_vn_unary_op_t) p2;
|
||||
return vuo1->opcode == vuo2->opcode
|
||||
&& vuo1->type == vuo2->type
|
||||
&& expressions_equal_p (vuo1->op0, vuo2->op0);
|
||||
}
|
||||
|
||||
/* Lookup OP in the current hash table, and return the resulting
|
||||
value number if it exists in the hash table. Return NULL_TREE if
|
||||
it does not exist in the hash table. */
|
||||
|
||||
tree
|
||||
vn_unary_op_lookup (tree op)
|
||||
{
|
||||
void **slot;
|
||||
struct vn_unary_op_s vuo1;
|
||||
|
||||
vuo1.opcode = TREE_CODE (op);
|
||||
vuo1.type = TREE_TYPE (op);
|
||||
vuo1.op0 = TREE_OPERAND (op, 0);
|
||||
|
||||
if (TREE_CODE (vuo1.op0) == SSA_NAME)
|
||||
vuo1.op0 = SSA_VAL (vuo1.op0);
|
||||
|
||||
vuo1.hashcode = vn_unary_op_compute_hash (&vuo1);
|
||||
slot = htab_find_slot_with_hash (current_info->unary, &vuo1, vuo1.hashcode,
|
||||
NO_INSERT);
|
||||
if (!slot && current_info == optimistic_info)
|
||||
slot = htab_find_slot_with_hash (valid_info->unary, &vuo1, vuo1.hashcode,
|
||||
NO_INSERT);
|
||||
if (!slot)
|
||||
return NULL_TREE;
|
||||
return ((vn_unary_op_t)*slot)->result;
|
||||
}
|
||||
|
||||
/* Insert OP into the current hash table with a value number of
|
||||
RESULT. */
|
||||
|
||||
void
|
||||
vn_unary_op_insert (tree op, tree result)
|
||||
{
|
||||
void **slot;
|
||||
vn_unary_op_t vuo1 = (vn_unary_op_t) pool_alloc (current_info->unary_op_pool);
|
||||
|
||||
vuo1->opcode = TREE_CODE (op);
|
||||
vuo1->type = TREE_TYPE (op);
|
||||
vuo1->op0 = TREE_OPERAND (op, 0);
|
||||
vuo1->result = result;
|
||||
|
||||
if (TREE_CODE (vuo1->op0) == SSA_NAME)
|
||||
vuo1->op0 = SSA_VAL (vuo1->op0);
|
||||
|
||||
vuo1->hashcode = vn_unary_op_compute_hash (vuo1);
|
||||
slot = htab_find_slot_with_hash (current_info->unary, vuo1, vuo1->hashcode,
|
||||
INSERT);
|
||||
gcc_assert (!*slot);
|
||||
*slot = vuo1;
|
||||
}
|
||||
|
||||
/* Compute and return the hash value for binary operation VBO1. */
|
||||
|
||||
static inline hashval_t
|
||||
vn_binary_op_compute_hash (const vn_binary_op_t vbo1)
|
||||
{
|
||||
return iterative_hash_expr (vbo1->op0, vbo1->opcode)
|
||||
+ iterative_hash_expr (vbo1->op1, vbo1->opcode);
|
||||
}
|
||||
|
||||
/* Return the computed hashcode for binary operation P1. */
|
||||
/* Return the computed hashcode for nary operation P1. */
|
||||
|
||||
static hashval_t
|
||||
vn_binary_op_hash (const void *p1)
|
||||
vn_nary_op_hash (const void *p1)
|
||||
{
|
||||
const_vn_binary_op_t const vbo1 = (const_vn_binary_op_t) p1;
|
||||
return vbo1->hashcode;
|
||||
const_vn_nary_op_t const vno1 = (const_vn_nary_op_t) p1;
|
||||
return vno1->hashcode;
|
||||
}
|
||||
|
||||
/* Compare binary operations P1 and P2 and return true if they are
|
||||
/* Compare nary operations P1 and P2 and return true if they are
|
||||
equivalent. */
|
||||
|
||||
static int
|
||||
vn_binary_op_eq (const void *p1, const void *p2)
|
||||
vn_nary_op_eq (const void *p1, const void *p2)
|
||||
{
|
||||
const_vn_binary_op_t const vbo1 = (const_vn_binary_op_t) p1;
|
||||
const_vn_binary_op_t const vbo2 = (const_vn_binary_op_t) p2;
|
||||
return vbo1->opcode == vbo2->opcode
|
||||
&& vbo1->type == vbo2->type
|
||||
&& expressions_equal_p (vbo1->op0, vbo2->op0)
|
||||
&& expressions_equal_p (vbo1->op1, vbo2->op1);
|
||||
const_vn_nary_op_t const vno1 = (const_vn_nary_op_t) p1;
|
||||
const_vn_nary_op_t const vno2 = (const_vn_nary_op_t) p2;
|
||||
unsigned i;
|
||||
|
||||
if (vno1->opcode != vno2->opcode
|
||||
|| vno1->type != vno2->type)
|
||||
return false;
|
||||
|
||||
for (i = 0; i < vno1->length; ++i)
|
||||
if (!expressions_equal_p (vno1->op[i], vno2->op[i]))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/* Lookup OP in the current hash table, and return the resulting
|
||||
@ -842,74 +766,54 @@ vn_binary_op_eq (const void *p1, const void *p2)
|
||||
it does not exist in the hash table. */
|
||||
|
||||
tree
|
||||
vn_binary_op_lookup (tree op)
|
||||
vn_nary_op_lookup (tree op)
|
||||
{
|
||||
void **slot;
|
||||
struct vn_binary_op_s vbo1;
|
||||
struct vn_nary_op_s vno1;
|
||||
unsigned i;
|
||||
|
||||
vbo1.opcode = TREE_CODE (op);
|
||||
vbo1.type = TREE_TYPE (op);
|
||||
vbo1.op0 = TREE_OPERAND (op, 0);
|
||||
vbo1.op1 = TREE_OPERAND (op, 1);
|
||||
|
||||
if (TREE_CODE (vbo1.op0) == SSA_NAME)
|
||||
vbo1.op0 = SSA_VAL (vbo1.op0);
|
||||
if (TREE_CODE (vbo1.op1) == SSA_NAME)
|
||||
vbo1.op1 = SSA_VAL (vbo1.op1);
|
||||
|
||||
if (tree_swap_operands_p (vbo1.op0, vbo1.op1, false)
|
||||
&& commutative_tree_code (vbo1.opcode))
|
||||
{
|
||||
tree temp = vbo1.op0;
|
||||
vbo1.op0 = vbo1.op1;
|
||||
vbo1.op1 = temp;
|
||||
}
|
||||
|
||||
vbo1.hashcode = vn_binary_op_compute_hash (&vbo1);
|
||||
slot = htab_find_slot_with_hash (current_info->binary, &vbo1, vbo1.hashcode,
|
||||
vno1.opcode = TREE_CODE (op);
|
||||
vno1.length = TREE_CODE_LENGTH (TREE_CODE (op));
|
||||
vno1.type = TREE_TYPE (op);
|
||||
for (i = 0; i < vno1.length; ++i)
|
||||
vno1.op[i] = TREE_OPERAND (op, i);
|
||||
vno1.hashcode = vn_nary_op_compute_hash (&vno1);
|
||||
slot = htab_find_slot_with_hash (current_info->nary, &vno1, vno1.hashcode,
|
||||
NO_INSERT);
|
||||
if (!slot && current_info == optimistic_info)
|
||||
slot = htab_find_slot_with_hash (valid_info->binary, &vbo1, vbo1.hashcode,
|
||||
slot = htab_find_slot_with_hash (valid_info->nary, &vno1, vno1.hashcode,
|
||||
NO_INSERT);
|
||||
if (!slot)
|
||||
return NULL_TREE;
|
||||
return ((vn_binary_op_t)*slot)->result;
|
||||
return ((vn_nary_op_t)*slot)->result;
|
||||
}
|
||||
|
||||
/* Insert OP into the current hash table with a value number of
|
||||
RESULT. */
|
||||
|
||||
void
|
||||
vn_binary_op_insert (tree op, tree result)
|
||||
vn_nary_op_insert (tree op, tree result)
|
||||
{
|
||||
unsigned length = TREE_CODE_LENGTH (TREE_CODE (op));
|
||||
void **slot;
|
||||
vn_binary_op_t vbo1;
|
||||
vbo1 = (vn_binary_op_t) pool_alloc (current_info->binary_op_pool);
|
||||
vn_nary_op_t vno1;
|
||||
unsigned i;
|
||||
|
||||
vbo1->opcode = TREE_CODE (op);
|
||||
vbo1->type = TREE_TYPE (op);
|
||||
vbo1->op0 = TREE_OPERAND (op, 0);
|
||||
vbo1->op1 = TREE_OPERAND (op, 1);
|
||||
vbo1->result = result;
|
||||
|
||||
if (TREE_CODE (vbo1->op0) == SSA_NAME)
|
||||
vbo1->op0 = SSA_VAL (vbo1->op0);
|
||||
if (TREE_CODE (vbo1->op1) == SSA_NAME)
|
||||
vbo1->op1 = SSA_VAL (vbo1->op1);
|
||||
|
||||
if (tree_swap_operands_p (vbo1->op0, vbo1->op1, false)
|
||||
&& commutative_tree_code (vbo1->opcode))
|
||||
{
|
||||
tree temp = vbo1->op0;
|
||||
vbo1->op0 = vbo1->op1;
|
||||
vbo1->op1 = temp;
|
||||
}
|
||||
vbo1->hashcode = vn_binary_op_compute_hash (vbo1);
|
||||
slot = htab_find_slot_with_hash (current_info->binary, vbo1, vbo1->hashcode,
|
||||
vno1 = obstack_alloc (¤t_info->nary_obstack,
|
||||
(sizeof (struct vn_nary_op_s)
|
||||
- sizeof (tree) * (4 - length)));
|
||||
vno1->opcode = TREE_CODE (op);
|
||||
vno1->length = length;
|
||||
vno1->type = TREE_TYPE (op);
|
||||
for (i = 0; i < vno1->length; ++i)
|
||||
vno1->op[i] = TREE_OPERAND (op, i);
|
||||
vno1->result = result;
|
||||
vno1->hashcode = vn_nary_op_compute_hash (vno1);
|
||||
slot = htab_find_slot_with_hash (current_info->nary, vno1, vno1->hashcode,
|
||||
INSERT);
|
||||
gcc_assert (!*slot);
|
||||
|
||||
*slot = vbo1;
|
||||
*slot = vno1;
|
||||
}
|
||||
|
||||
/* Compute a hashcode for PHI operation VP1 and return it. */
|
||||
@ -1139,7 +1043,7 @@ static bool
|
||||
visit_unary_op (tree lhs, tree op)
|
||||
{
|
||||
bool changed = false;
|
||||
tree result = vn_unary_op_lookup (op);
|
||||
tree result = vn_nary_op_lookup (op);
|
||||
|
||||
if (result)
|
||||
{
|
||||
@ -1148,7 +1052,7 @@ visit_unary_op (tree lhs, tree op)
|
||||
else
|
||||
{
|
||||
changed = set_ssa_val_to (lhs, lhs);
|
||||
vn_unary_op_insert (op, lhs);
|
||||
vn_nary_op_insert (op, lhs);
|
||||
}
|
||||
|
||||
return changed;
|
||||
@ -1161,7 +1065,7 @@ static bool
|
||||
visit_binary_op (tree lhs, tree op)
|
||||
{
|
||||
bool changed = false;
|
||||
tree result = vn_binary_op_lookup (op);
|
||||
tree result = vn_nary_op_lookup (op);
|
||||
|
||||
if (result)
|
||||
{
|
||||
@ -1170,7 +1074,7 @@ visit_binary_op (tree lhs, tree op)
|
||||
else
|
||||
{
|
||||
changed = set_ssa_val_to (lhs, lhs);
|
||||
vn_binary_op_insert (op, lhs);
|
||||
vn_nary_op_insert (op, lhs);
|
||||
}
|
||||
|
||||
return changed;
|
||||
@ -1843,12 +1747,11 @@ process_scc (VEC (tree, heap) *scc)
|
||||
{
|
||||
changed = false;
|
||||
iterations++;
|
||||
htab_empty (optimistic_info->unary);
|
||||
htab_empty (optimistic_info->binary);
|
||||
htab_empty (optimistic_info->nary);
|
||||
htab_empty (optimistic_info->phis);
|
||||
htab_empty (optimistic_info->references);
|
||||
empty_alloc_pool (optimistic_info->unary_op_pool);
|
||||
empty_alloc_pool (optimistic_info->binary_op_pool);
|
||||
obstack_free (&optimistic_info->nary_obstack, NULL);
|
||||
gcc_obstack_init (&optimistic_info->nary_obstack);
|
||||
empty_alloc_pool (optimistic_info->phis_pool);
|
||||
empty_alloc_pool (optimistic_info->references_pool);
|
||||
for (i = 0; VEC_iterate (tree, scc, i, var); i++)
|
||||
@ -1965,17 +1868,11 @@ static void
|
||||
allocate_vn_table (vn_tables_t table)
|
||||
{
|
||||
table->phis = htab_create (23, vn_phi_hash, vn_phi_eq, free_phi);
|
||||
table->unary = htab_create (23, vn_unary_op_hash, vn_unary_op_eq, NULL);
|
||||
table->binary = htab_create (23, vn_binary_op_hash, vn_binary_op_eq, NULL);
|
||||
table->nary = htab_create (23, vn_nary_op_hash, vn_nary_op_eq, NULL);
|
||||
table->references = htab_create (23, vn_reference_hash, vn_reference_eq,
|
||||
free_reference);
|
||||
|
||||
table->unary_op_pool = create_alloc_pool ("VN unary operations",
|
||||
sizeof (struct vn_unary_op_s),
|
||||
30);
|
||||
table->binary_op_pool = create_alloc_pool ("VN binary operations",
|
||||
sizeof (struct vn_binary_op_s),
|
||||
30);
|
||||
gcc_obstack_init (&table->nary_obstack);
|
||||
table->phis_pool = create_alloc_pool ("VN phis",
|
||||
sizeof (struct vn_phi_s),
|
||||
30);
|
||||
@ -1990,11 +1887,9 @@ static void
|
||||
free_vn_table (vn_tables_t table)
|
||||
{
|
||||
htab_delete (table->phis);
|
||||
htab_delete (table->unary);
|
||||
htab_delete (table->binary);
|
||||
htab_delete (table->nary);
|
||||
htab_delete (table->references);
|
||||
free_alloc_pool (table->unary_op_pool);
|
||||
free_alloc_pool (table->binary_op_pool);
|
||||
obstack_free (&table->nary_obstack, NULL);
|
||||
free_alloc_pool (table->phis_pool);
|
||||
free_alloc_pool (table->references_pool);
|
||||
}
|
||||
|
@ -52,10 +52,8 @@ extern vn_ssa_aux_t VN_INFO_GET (tree);
|
||||
bool run_scc_vn (void);
|
||||
void free_scc_vn (void);
|
||||
void switch_to_PRE_table (void);
|
||||
tree vn_binary_op_lookup (tree);
|
||||
void vn_binary_op_insert (tree, tree);
|
||||
tree vn_unary_op_lookup (tree);
|
||||
void vn_unary_op_insert (tree, tree);
|
||||
tree vn_nary_op_lookup (tree);
|
||||
void vn_nary_op_insert (tree, tree);
|
||||
tree vn_reference_lookup (tree, VEC (tree, gc) *);
|
||||
void vn_reference_insert (tree, tree, VEC (tree, gc) *);
|
||||
VEC (tree, gc) *shared_vuses_from_stmt (tree);
|
||||
|
@ -173,10 +173,10 @@ vn_add (tree expr, tree val)
|
||||
{
|
||||
case tcc_comparison:
|
||||
case tcc_binary:
|
||||
vn_binary_op_insert (expr, val);
|
||||
vn_nary_op_insert (expr, val);
|
||||
break;
|
||||
case tcc_unary:
|
||||
vn_unary_op_insert (expr, val);
|
||||
vn_nary_op_insert (expr, val);
|
||||
break;
|
||||
/* In the case of array-refs of constants, for example, we can
|
||||
end up with no vuses. */
|
||||
@ -201,7 +201,7 @@ vn_add (tree expr, tree val)
|
||||
}
|
||||
else if (TREE_CODE (expr) == ADDR_EXPR)
|
||||
{
|
||||
vn_unary_op_insert (expr, val);
|
||||
vn_nary_op_insert (expr, val);
|
||||
break;
|
||||
}
|
||||
/* FALLTHROUGH */
|
||||
@ -248,9 +248,9 @@ vn_lookup (tree expr)
|
||||
{
|
||||
case tcc_comparison:
|
||||
case tcc_binary:
|
||||
return vn_binary_op_lookup (expr);
|
||||
return vn_nary_op_lookup (expr);
|
||||
case tcc_unary:
|
||||
return vn_unary_op_lookup (expr);
|
||||
return vn_nary_op_lookup (expr);
|
||||
break;
|
||||
/* In the case of array-refs of constants, for example, we can
|
||||
end up with no vuses. */
|
||||
@ -268,7 +268,7 @@ vn_lookup (tree expr)
|
||||
else if (TREE_CODE (expr) == SSA_NAME)
|
||||
return SSA_NAME_VALUE (expr);
|
||||
else if (TREE_CODE (expr) == ADDR_EXPR)
|
||||
return vn_unary_op_lookup (expr);
|
||||
return vn_nary_op_lookup (expr);
|
||||
/* FALLTHROUGH */
|
||||
default:
|
||||
gcc_unreachable ();
|
||||
|
Loading…
Reference in New Issue
Block a user