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

/art/compiler/utils/x86/
H A Dassembler_x86.h49 class Operand { class in namespace:art::x86
89 // Operand can be sub classed (e.g: Address).
90 Operand() : length_(0) { } function in class:art::x86::Operand
121 explicit Operand(Register reg) { SetModRM(3, reg); } function in class:art::x86::Operand
132 DISALLOW_COPY_AND_ASSIGN(Operand);
136 class Address : public Operand {
582 void EmitOperand(int rm, const Operand& operand);
584 void EmitComplex(int rm, const Operand& operand, const Immediate& immediate);
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h61 class Operand { class in namespace:art::x86_64
106 // Operand can be sub classed (e.g: Address).
107 Operand() : rex_(0), length_(0) { } function in class:art::x86_64::Operand
149 explicit Operand(CpuRegister reg) : rex_(0), length_(0) { SetModRM(3, reg); } function in class:art::x86_64::Operand
160 DISALLOW_COPY_AND_ASSIGN(Operand);
164 class Address : public Operand {
626 void EmitOperand(uint8_t rm, const Operand& operand);
628 void EmitComplex(uint8_t rm, const Operand& operand, const Immediate& immediate);
645 void EmitOptionalRex32(const Operand& operand);
646 void EmitOptionalRex32(CpuRegister dst, const Operand
[all...]

Completed in 35 milliseconds