Searched defs:Operand (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.h52 class Operand : public ValueObject { class in namespace:art::x86
92 // Operand can be sub classed (e.g: Address).
93 Operand() : length_(0), fixup_(nullptr) { } function in class:art::x86::Operand
136 explicit Operand(Register reg) : fixup_(nullptr) { SetModRM(3, reg); } function in class:art::x86::Operand
149 class Address : public Operand {
781 void EmitOperand(int rm, const Operand& operand);
783 void EmitComplex(int rm, const Operand& operand, const Immediate& immediate);
788 void EmitGenericShift(int rm, const Operand& operand, const Immediate& imm);
789 void EmitGenericShift(int rm, const Operand& operand, Register shifter);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h60 class Operand : public ValueObject { class in namespace:art::x86_64
109 // Operand can be sub classed (e.g: Address).
110 Operand() : rex_(0), length_(0), fixup_(nullptr) { } function in class:art::x86_64::Operand
157 explicit Operand(CpuRegister reg) : rex_(0), length_(0), fixup_(nullptr) { SetModRM(3, reg); } function in class:art::x86_64::Operand
170 class Address : public Operand {
852 void EmitOperand(uint8_t rm, const Operand& operand);
854 void EmitComplex(uint8_t rm, const Operand& operand, const Immediate& immediate);
871 void EmitOptionalRex32(const Operand& operand);
872 void EmitOptionalRex32(CpuRegister dst, const Operand& operand);
873 void EmitOptionalRex32(XmmRegister dst, const Operand
[all...]

Completed in 618 milliseconds