POW2/LOG2 for vexptefp/vlogefp.

This commit is contained in:
Ben Vanik
2014-01-06 18:13:16 -08:00
parent de113a4a05
commit 3dcbcce38d
7 changed files with 128 additions and 10 deletions

View File

@@ -490,6 +490,18 @@ void alloy::backend::x64::lowering::RegisterSequences(LoweringTable* table) {
return true;
});
table->AddSequence(OPCODE_POW2, [](LIRBuilder& lb, Instr*& instr) {
// TODO
instr = instr->next;
return true;
});
table->AddSequence(OPCODE_LOG2, [](LIRBuilder& lb, Instr*& instr) {
// TODO
instr = instr->next;
return true;
});
table->AddSequence(OPCODE_DOT_PRODUCT_3, [](LIRBuilder& lb, Instr*& instr) {
// TODO
instr = instr->next;