summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/idiv.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-11-13 09:34:45 +0100
committerRoland Reichwein <mail@reichwein.it>2020-11-13 09:34:45 +0100
commit387af55e498970975d77291374e2f5be12a040bd (patch)
tree8731c285c5476420363f6760f6814728c38d1866 /asm/intel64/idiv.h
parentbbf81cd21bbe36fe7e613e5411b9d366d8411921 (diff)
Added intel sub, div, idiv
Diffstat (limited to 'asm/intel64/idiv.h')
-rw-r--r--asm/intel64/idiv.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/asm/intel64/idiv.h b/asm/intel64/idiv.h
new file mode 100644
index 0000000..a6ef411
--- /dev/null
+++ b/asm/intel64/idiv.h
@@ -0,0 +1,31 @@
+// Divide Signed Integer
+
+#pragma once
+
+#include <asm/assembler.h>
+
+class Op_idiv: public Op
+{
+public:
+ Op_idiv(Asm::Args& args);
+
+public:
+ std::vector<uint8_t> getCode() override
+ {
+ return machine_code;
+ }
+
+ size_t size() override
+ {
+ return machine_code.size();
+ }
+
+ bool optimize() override ///< returns true if changed
+ {
+ return false;
+ }
+
+protected:
+ std::vector<uint8_t> machine_code;
+};
+