Searched refs:DispSpec (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/X86/InstPrinter/
H A DX86ATTInstPrinter.cpp140 const MCOperand &DispSpec = MI->getOperand(Op+3); local
149 if (DispSpec.isImm()) {
150 int64_t DispVal = DispSpec.getImm();
154 assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
155 O << *DispSpec.getExpr();
H A DX86IntelInstPrinter.cpp132 const MCOperand &DispSpec = MI->getOperand(Op+3); local
158 if (!DispSpec.isImm()) {
160 assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
161 O << *DispSpec.getExpr();
163 int64_t DispVal = DispSpec.getImm();
/external/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp314 const MachineOperand &DispSpec = MI->getOperand(Op+3); local
325 if (DispSpec.isImm()) {
326 int DispVal = DispSpec.getImm();
330 assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
331 DispSpec.isJTI() || DispSpec.isSymbol());

Completed in 75 milliseconds