diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-10 20:05:04 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-10 20:05:04 +0100 |
commit | 32e19781c554c83643fcab4c4f39a6a552c367f5 (patch) | |
tree | 09f42ab252ef5c2204163c46b9d3a65548a19f8a /asm/intel64/mul.cpp | |
parent | 8f2e3e7af0360cca7f8918ae41cc573f8cd88d7f (diff) |
Implemented dec, mul, imul
Diffstat (limited to 'asm/intel64/mul.cpp')
-rw-r--r-- | asm/intel64/mul.cpp | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/asm/intel64/mul.cpp b/asm/intel64/mul.cpp new file mode 100644 index 0000000..e4c3489 --- /dev/null +++ b/asm/intel64/mul.cpp @@ -0,0 +1,43 @@ +#include "mul.h" + +#include "codes.h" + +#include <asm/assembler.h> +#include <asm/operators.h> + +#include <asm/intel64/codes.h> + +using namespace std::string_literals; + +Op_mul::Op_mul(Asm::Args& args) +{ + if (args[0].type() == typeid(Asm::Args::Register8)) { // mul reg8 (accu is ax <- al) + machine_code = std::vector<uint8_t>{ 0xF6 } + + ModRM("/4", std::any_cast<Asm::Args::Register8>(args[0]).name()); + } else if (args[0].type() == typeid(Asm::Args::Register32)) { // mul reg32 (accu is edx:eax <- eax) + machine_code = std::vector<uint8_t>{ 0xF7 } + + ModRM("/4", std::any_cast<Asm::Args::Register32>(args[0]).name()); + } else if (args[0].type() == typeid(Asm::Args::Register64)) { // mul reg64 (accu is rdx:rax <- rax) + machine_code = REX("W") + std::vector<uint8_t>{ 0xF7 } + + ModRM("/4", std::any_cast<Asm::Args::Register64>(args[0]).name()); + } else { + throw std::runtime_error("Unimplemented: mul "s + args[0].type().name()); + } +} + +namespace { + +bool registered { + registerOp(mangleName<Asm::Args::Register8>("mul"), [](Asm::Args& args) -> std::shared_ptr<Op>{ + return std::make_shared<Op_mul>(args); + }) && + registerOp(mangleName<Asm::Args::Register32>("mul"), [](Asm::Args& args) -> std::shared_ptr<Op>{ + return std::make_shared<Op_mul>(args); + }) && + registerOp(mangleName<Asm::Args::Register64>("mul"), [](Asm::Args& args) -> std::shared_ptr<Op>{ + return std::make_shared<Op_mul>(args); + }) +}; + +} + |