Removing unused code, via jdarpinian.

This commit is contained in:
Ben Vanik 2013-12-25 20:57:07 -08:00
parent 85dec3bf44
commit abc5aac7ee
3 changed files with 0 additions and 3 deletions

View File

@ -120,7 +120,6 @@ void ContextPromotionPass::RemoveDeadStoresBlock(Block* block) {
Instr* prev = i->prev; Instr* prev = i->prev;
if (i->opcode == &OPCODE_STORE_CONTEXT_info) { if (i->opcode == &OPCODE_STORE_CONTEXT_info) {
size_t offset = i->src1.offset; size_t offset = i->src1.offset;
Value* value = i->src2.value;
if (context_values_[offset] != token) { if (context_values_[offset] != token) {
// Mark offset as written to. // Mark offset as written to.
context_values_[offset] = token; context_values_[offset] = token;

View File

@ -334,7 +334,6 @@ int InstrEmit_stvrx_(PPCFunctionBuilder& f, InstrData& i, uint32_t vd, uint32_t
// we could optimize this to prevent the other load/mask, in that case. // we could optimize this to prevent the other load/mask, in that case.
Value* ea = ra ? f.Add(f.LoadGPR(ra), f.LoadGPR(rb)) : f.LoadGPR(rb); Value* ea = ra ? f.Add(f.LoadGPR(ra), f.LoadGPR(rb)) : f.LoadGPR(rb);
Value* eb = f.And(f.Truncate(ea, INT8_TYPE), f.LoadConstant((int8_t)0xF)); Value* eb = f.And(f.Truncate(ea, INT8_TYPE), f.LoadConstant((int8_t)0xF));
Value* ebits = f.Mul(eb, f.LoadConstant((int8_t)8));
Value* new_value = f.LoadVR(vd); Value* new_value = f.LoadVR(vd);
// ea &= ~0xF (load takes care of this) // ea &= ~0xF (load takes care of this)
Value* old_value = f.ByteSwap(f.Load(ea, VEC128_TYPE)); Value* old_value = f.ByteSwap(f.Load(ea, VEC128_TYPE));

View File

@ -957,7 +957,6 @@ XEEMITTER(rlwimix, 0x50000000, M )(PPCFunctionBuilder& f, InstrData& i) {
v = f.And(v, f.LoadConstant(m)); v = f.And(v, f.LoadConstant(m));
} }
v = f.ZeroExtend(v, INT64_TYPE); v = f.ZeroExtend(v, INT64_TYPE);
Value* ra = f.LoadGPR(i.M.RA);
v = f.Or(v, f.And(f.LoadGPR(i.M.RA), f.LoadConstant((~(uint64_t)m)))); v = f.Or(v, f.And(f.LoadGPR(i.M.RA), f.LoadConstant((~(uint64_t)m))));
if (i.M.Rc) { if (i.M.Rc) {
f.UpdateCR(0, v); f.UpdateCR(0, v);