This commit is contained in:
Ben Vanik 2013-12-13 22:24:19 -08:00
parent d1210218ac
commit a1f41c656a
4 changed files with 38 additions and 15 deletions

View File

@ -186,18 +186,29 @@ XEEMITTER(lvxl128, VX128_1(4, 707), VX128_1)(PPCFunctionBuilder& f, Inst
} }
XEEMITTER(stvebx, 0x7C00010E, X )(PPCFunctionBuilder& f, InstrData& i) { XEEMITTER(stvebx, 0x7C00010E, X )(PPCFunctionBuilder& f, InstrData& i) {
XEINSTRNOTIMPLEMENTED(); Value* ea = i.X.RA ? f.Add(f.LoadGPR(i.X.RA), f.LoadGPR(i.X.RB)) : f.LoadGPR(i.X.RB);
return 1; Value* el = f.And(ea, f.LoadConstant(0xFull));
Value* v = f.Extract(f.LoadVR(i.X.RT), el, INT8_TYPE);
f.Store(ea, v);
return 0;
} }
XEEMITTER(stvehx, 0x7C00014E, X )(PPCFunctionBuilder& f, InstrData& i) { XEEMITTER(stvehx, 0x7C00014E, X )(PPCFunctionBuilder& f, InstrData& i) {
XEINSTRNOTIMPLEMENTED(); Value* ea = i.X.RA ? f.Add(f.LoadGPR(i.X.RA), f.LoadGPR(i.X.RB)) : f.LoadGPR(i.X.RB);
return 1; ea = f.And(ea, f.LoadConstant(~0x1ull));
Value* el = f.Shr(f.And(ea, f.LoadConstant(0xFull)), 1);
Value* v = f.Extract(f.LoadVR(i.X.RT), el, INT16_TYPE);
f.Store(ea, f.ByteSwap(v));
return 0;
} }
int InstrEmit_stvewx_(PPCFunctionBuilder& f, InstrData& i, uint32_t vd, uint32_t ra, uint32_t rb) { int InstrEmit_stvewx_(PPCFunctionBuilder& f, InstrData& i, uint32_t vd, uint32_t ra, uint32_t rb) {
XEINSTRNOTIMPLEMENTED(); Value* ea = ra ? f.Add(f.LoadGPR(ra), f.LoadGPR(rb)) : f.LoadGPR(rb);
return 1; ea = f.And(ea, f.LoadConstant(~0x3ull));
Value* el = f.Shr(f.And(ea, f.LoadConstant(0xFull)), 2);
Value* v = f.Extract(f.LoadVR(vd), el, INT32_TYPE);
f.Store(ea, f.ByteSwap(v));
return 0;
} }
XEEMITTER(stvewx, 0x7C00018E, X )(PPCFunctionBuilder& f, InstrData& i) { XEEMITTER(stvewx, 0x7C00018E, X )(PPCFunctionBuilder& f, InstrData& i) {
return InstrEmit_stvewx_(f, i, i.X.RT, i.X.RA, i.X.RB); return InstrEmit_stvewx_(f, i, i.X.RT, i.X.RA, i.X.RB);
@ -1608,7 +1619,7 @@ XEEMITTER(vupkd3d128, VX128_3(6, 2032), VX128_3)(PPCFunctionBuilder& f, Inst
// zzzzZZZZzzzzARGB // zzzzZZZZzzzzARGB
v = f.LoadVR(vb); v = f.LoadVR(vb);
// 0zzzZZZZzzzzARGB // 0zzzZZZZzzzzARGB
v = f.Insert(v, 0, f.LoadConstant((int8_t)0)); v = f.Insert(v, 0ull, f.LoadConstant((int8_t)0));
// 000R000G000B000A // 000R000G000B000A
vec128_t shuf_v = { 0 }; vec128_t shuf_v = { 0 };
shuf_v.b16[3] = 13; shuf_v.b16[3] = 13;

View File

@ -1479,30 +1479,40 @@ Value* FunctionBuilder::CountLeadingZeros(Value* value) {
return i->dest; return i->dest;
} }
Value* FunctionBuilder::Insert(Value* value, uint32_t index, Value* part) { Value* FunctionBuilder::Insert(Value* value, Value* index, Value* part) {
// TODO(benvanik): could do some of this as constants. // TODO(benvanik): could do some of this as constants.
Instr* i = AppendInstr( Instr* i = AppendInstr(
OPCODE_INSERT_info, 0, OPCODE_INSERT_info, 0,
AllocValue(value->type)); AllocValue(value->type));
i->set_src1(value); i->set_src1(value);
i->src2.offset = index; i->set_src2(ZeroExtend(index, INT64_TYPE));
i->set_src3(part); i->set_src3(part);
return i->dest; return i->dest;
} }
Value* FunctionBuilder::Extract(Value* value, uint32_t index, TypeName target_type) { Value* FunctionBuilder::Insert(Value* value, uint64_t index, Value* part) {
return Insert(value, LoadConstant(index), part);
}
Value* FunctionBuilder::Extract(Value* value, Value* index,
TypeName target_type) {
// TODO(benvanik): could do some of this as constants. // TODO(benvanik): could do some of this as constants.
Instr* i = AppendInstr( Instr* i = AppendInstr(
OPCODE_EXTRACT_info, 0, OPCODE_EXTRACT_info, 0,
AllocValue(target_type)); AllocValue(target_type));
i->set_src1(value); i->set_src1(value);
i->src2.offset = index; i->set_src2(ZeroExtend(index, INT64_TYPE));
i->src3.value = NULL; i->src3.value = NULL;
return i->dest; return i->dest;
} }
Value* FunctionBuilder::Extract(Value* value, uint64_t index,
TypeName target_type) {
return Extract(value, LoadConstant(index), target_type);
}
Value* FunctionBuilder::Splat(Value* value, TypeName target_type) { Value* FunctionBuilder::Splat(Value* value, TypeName target_type) {
// TODO(benvanik): could do some of this as constants. // TODO(benvanik): could do some of this as constants.

View File

@ -183,8 +183,10 @@ public:
Value* RotateLeft(Value* value1, Value* value2); Value* RotateLeft(Value* value1, Value* value2);
Value* ByteSwap(Value* value); Value* ByteSwap(Value* value);
Value* CountLeadingZeros(Value* value); Value* CountLeadingZeros(Value* value);
Value* Insert(Value* value, uint32_t index, Value* part); Value* Insert(Value* value, Value* index, Value* part);
Value* Extract(Value* value, uint32_t index, TypeName target_type); Value* Insert(Value* value, uint64_t index, Value* part);
Value* Extract(Value* value, Value* index, TypeName target_type);
Value* Extract(Value* value, uint64_t index, TypeName target_type);
// i8->i16/i32/... (i8|i8 / i8|i8|i8|i8 / ...) // i8->i16/i32/... (i8|i8 / i8|i8|i8|i8 / ...)
// i8/i16/i32 -> vec128 // i8/i16/i32 -> vec128
Value* Splat(Value* value, TypeName target_type); Value* Splat(Value* value, TypeName target_type);

View File

@ -508,13 +508,13 @@ DEFINE_OPCODE(
DEFINE_OPCODE( DEFINE_OPCODE(
OPCODE_INSERT, OPCODE_INSERT,
"insert", "insert",
OPCODE_SIG_V_V_O_V, OPCODE_SIG_V_V_V_V,
0); 0);
DEFINE_OPCODE( DEFINE_OPCODE(
OPCODE_EXTRACT, OPCODE_EXTRACT,
"extract", "extract",
OPCODE_SIG_V_V_O, OPCODE_SIG_V_V_V,
0); 0);
DEFINE_OPCODE( DEFINE_OPCODE(