1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/*
* memops - try to combine memory ops.
*
* Copyright (C) 2004 Linus Torvalds
*/
#include <string.h>
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <stddef.h>
#include <assert.h>
#include "parse.h"
#include "expression.h"
#include "linearize.h"
#include "simplify.h"
#include "flow.h"
static void rewrite_load_instruction(struct instruction *insn, struct pseudo_list *dominators)
{
pseudo_t new = NULL;
pseudo_t phi;
/*
* Check for somewhat common case of duplicate
* phi nodes.
*/
FOR_EACH_PTR(dominators, phi) {
if (!new)
new = phi->def->phi_src;
else if (new != phi->def->phi_src)
goto complex_phi;
} END_FOR_EACH_PTR(phi);
/*
* All the same pseudo - mark the phi-nodes unused
* and convert the load into a LNOP and replace the
* pseudo.
*/
replace_with_pseudo(insn, new);
FOR_EACH_PTR(dominators, phi) {
kill_instruction(phi->def);
} END_FOR_EACH_PTR(phi);
goto end;
complex_phi:
kill_use(&insn->src);
insn->opcode = OP_PHI;
insn->phi_list = dominators;
end:
repeat_phase |= REPEAT_CSE;
}
static int find_dominating_parents(struct instruction *insn,
struct basic_block *bb, struct pseudo_list **dominators,
int local)
{
struct basic_block *parent;
FOR_EACH_PTR(bb->parents, parent) {
struct instruction *phisrc;
struct instruction *one;
pseudo_t phi;
FOR_EACH_PTR_REVERSE(parent->insns, one) {
int dominance;
if (!one->bb)
continue;
if (one == insn)
goto no_dominance;
dominance = dominates(insn, one, local);
if (dominance < 0) {
if (one->opcode == OP_LOAD)
continue;
return 0;
}
if (!dominance)
continue;
goto found_dominator;
} END_FOR_EACH_PTR_REVERSE(one);
no_dominance:
if (parent->generation == bb->generation)
continue;
parent->generation = bb->generation;
if (!find_dominating_parents(insn, parent, dominators, local))
return 0;
continue;
found_dominator:
phisrc = alloc_phisrc(one->target, one->type);
phisrc->phi_node = insn;
insert_last_instruction(parent, phisrc);
phi = phisrc->target;
phi->ident = phi->ident ? : one->target->ident;
use_pseudo(insn, phi, add_pseudo(dominators, phi));
} END_FOR_EACH_PTR(parent);
return 1;
}
static int address_taken(pseudo_t pseudo)
{
struct pseudo_user *pu;
FOR_EACH_PTR(pseudo->users, pu) {
struct instruction *insn = pu->insn;
if (insn->bb && (insn->opcode != OP_LOAD && insn->opcode != OP_STORE))
return 1;
if (pu->userp != &insn->src)
return 1;
} END_FOR_EACH_PTR(pu);
return 0;
}
static int local_pseudo(pseudo_t pseudo)
{
return pseudo->type == PSEUDO_SYM
&& !(pseudo->sym->ctype.modifiers & (MOD_STATIC | MOD_NONLOCAL))
&& !address_taken(pseudo);
}
static bool compatible_loads(struct instruction *a, struct instruction *b)
{
if (is_integral_type(a->type) && is_float_type(b->type))
return false;
if (is_float_type(a->type) && is_integral_type(b->type))
return false;
return true;
}
static void simplify_loads(struct basic_block *bb)
{
struct instruction *insn;
FOR_EACH_PTR_REVERSE(bb->insns, insn) {
if (!insn->bb)
continue;
if (insn->opcode == OP_LOAD) {
struct instruction *dom;
pseudo_t pseudo = insn->src;
int local = local_pseudo(pseudo);
struct pseudo_list *dominators;
if (insn->is_volatile)
continue;
if (!has_users(insn->target)) {
kill_instruction(insn);
continue;
}
RECURSE_PTR_REVERSE(insn, dom) {
int dominance;
if (!dom->bb)
continue;
dominance = dominates(insn, dom, local);
if (dominance) {
/* possible partial dominance? */
if (dominance < 0) {
if (dom->opcode == OP_LOAD)
continue;
goto next_load;
}
if (!compatible_loads(insn, dom))
goto next_load;
/* Yeehaa! Found one! */
replace_with_pseudo(insn, dom->target);
goto next_load;
}
} END_FOR_EACH_PTR_REVERSE(dom);
/* OK, go find the parents */
bb->generation = ++bb_generation;
dominators = NULL;
if (find_dominating_parents(insn, bb, &dominators, local)) {
/* This happens with initial assignments to structures etc.. */
if (!dominators) {
if (local) {
assert(pseudo->type != PSEUDO_ARG);
replace_with_pseudo(insn, value_pseudo(0));
}
goto next_load;
}
rewrite_load_instruction(insn, dominators);
} else { // cleanup pending phi-sources
int repeat = repeat_phase;
pseudo_t phi;
FOR_EACH_PTR(dominators, phi) {
kill_instruction(phi->def);
} END_FOR_EACH_PTR(phi);
repeat_phase = repeat;
}
}
next_load:
/* Do the next one */;
} END_FOR_EACH_PTR_REVERSE(insn);
}
static bool try_to_kill_store(struct instruction *insn,
struct instruction *dom, int local)
{
int dominance = dominates(insn, dom, local);
if (dominance) {
/* possible partial dominance? */
if (dominance < 0)
return false;
if (insn->target == dom->target && insn->bb == dom->bb) {
// found a memop which makes the store redundant
kill_instruction_force(insn);
return false;
}
if (dom->opcode == OP_LOAD)
return false;
if (dom->is_volatile)
return false;
/* Yeehaa! Found one! */
kill_instruction_force(dom);
}
return true;
}
static void kill_dominated_stores(struct basic_block *bb)
{
struct instruction *insn;
FOR_EACH_PTR_REVERSE(bb->insns, insn) {
if (!insn->bb)
continue;
if (insn->opcode == OP_STORE) {
struct basic_block *par;
struct instruction *dom;
pseudo_t pseudo = insn->src;
int local;
if (!insn->type)
continue;
if (insn->is_volatile)
continue;
local = local_pseudo(pseudo);
RECURSE_PTR_REVERSE(insn, dom) {
if (!dom->bb)
continue;
if (!try_to_kill_store(insn, dom, local))
goto next_store;
} END_FOR_EACH_PTR_REVERSE(dom);
/* OK, we should check the parents now */
FOR_EACH_PTR(bb->parents, par) {
if (bb_list_size(par->children) != 1)
goto next_parent;
FOR_EACH_PTR(par->insns, dom) {
if (!dom->bb)
continue;
if (dom == insn)
goto next_parent;
if (!try_to_kill_store(insn, dom, local))
goto next_parent;
} END_FOR_EACH_PTR(dom);
next_parent:
;
} END_FOR_EACH_PTR(par);
}
next_store:
/* Do the next one */;
} END_FOR_EACH_PTR_REVERSE(insn);
}
void simplify_memops(struct entrypoint *ep)
{
struct basic_block *bb;
pseudo_t pseudo;
FOR_EACH_PTR_REVERSE(ep->bbs, bb) {
simplify_loads(bb);
} END_FOR_EACH_PTR_REVERSE(bb);
FOR_EACH_PTR_REVERSE(ep->bbs, bb) {
kill_dominated_stores(bb);
} END_FOR_EACH_PTR_REVERSE(bb);
FOR_EACH_PTR(ep->accesses, pseudo) {
struct symbol *var = pseudo->sym;
unsigned long mod;
if (!var)
continue;
mod = var->ctype.modifiers;
if (mod & (MOD_VOLATILE | MOD_NONLOCAL | MOD_STATIC))
continue;
kill_dead_stores(ep, pseudo, local_pseudo(pseudo));
} END_FOR_EACH_PTR(pseudo);
}
|