summaryrefslogtreecommitdiffhomepage
path: root/asm/intel64/cmovcc.h
blob: b11c1b56d0fe1dd444e7445a2cf9a291f0cd4bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// CMOVcc - Conditional Move

#pragma once

#include <asm/assembler.h>

class Op_cmovcc: public Op
{
public:
 Op_cmovcc(const std::string& name, const Asm::Args& args, const OP_T& opcode);

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;
};