Searched defs:MCOperand (Results 1 - 3 of 3) sorted by relevance

/external/capstone/
H A DMCInst.h10 // This file contains the declaration of the MCInst and MCOperand classes, which
29 typedef struct MCOperand MCOperand; typedef in typeref:struct:MCOperand
31 /// MCOperand - Instances of this class represent operands of the MCInst class.
33 struct MCOperand { struct
49 bool MCOperand_isValid(const MCOperand *op);
51 bool MCOperand_isReg(const MCOperand *op);
53 bool MCOperand_isImm(const MCOperand *op);
55 bool MCOperand_isFPImm(const MCOperand *op);
57 bool MCOperand_isInst(const MCOperand *o
[all...]
/external/llvm/include/llvm/MC/
H A DMCInst.h10 // This file contains the declaration of the MCInst and MCOperand classes, which
33 class MCOperand { class in namespace:llvm
53 MCOperand() : Kind(kInvalid), FPImmVal(0.0) {} function in class:llvm::MCOperand
111 static MCOperand createReg(unsigned Reg) {
112 MCOperand Op;
117 static MCOperand createImm(int64_t Val) {
118 MCOperand Op;
123 static MCOperand createFPImm(double Val) {
124 MCOperand Op;
129 static MCOperand createExp
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCInst.h10 // This file contains the declaration of the MCInst and MCOperand classes, which
29 /// MCOperand - Instances of this class represent operands of the MCInst class.
31 class MCOperand { class in namespace:llvm
49 MCOperand() : Kind(kInvalid), FPImmVal(0.0) {} function in class:llvm::MCOperand
97 static MCOperand CreateReg(unsigned Reg) {
98 MCOperand Op;
103 static MCOperand CreateImm(int64_t Val) {
104 MCOperand Op;
109 static MCOperand CreateFPImm(double Val) {
110 MCOperand O
[all...]

Completed in 656 milliseconds