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

/freebsd-10.2-release/contrib/llvm/lib/Target/X86/InstPrinter/
H A DX86ATTInstPrinter.cpp177 const MCOperand &DispSpec = MI->getOperand(Op+3); local
188 if (DispSpec.isImm()) {
189 int64_t DispVal = DispSpec.getImm();
193 assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
194 O << *DispSpec.getExpr();
221 const MCOperand &DispSpec = MI->getOperand(Op); local
225 if (DispSpec.isImm()) {
226 O << formatImm(DispSpec.getImm());
228 assert(DispSpec.isExpr() && "non-immediate displacement?");
229 O << *DispSpec
[all...]
H A DX86IntelInstPrinter.cpp157 const MCOperand &DispSpec = MI->getOperand(Op+3); local
182 if (!DispSpec.isImm()) {
184 assert(DispSpec.isExpr() && "non-immediate displacement for LEA?");
185 O << *DispSpec.getExpr();
187 int64_t DispVal = DispSpec.getImm();
206 const MCOperand &DispSpec = MI->getOperand(Op); local
210 if (DispSpec.isImm()) {
211 O << formatImm(DispSpec.getImm());
213 assert(DispSpec.isExpr() && "non-immediate displacement?");
214 O << *DispSpec
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Target/X86/
H A DX86AsmPrinter.cpp274 const MachineOperand &DispSpec = MI->getOperand(Op+3); local
285 if (DispSpec.isImm()) {
286 int DispVal = DispSpec.getImm();
290 assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
291 DispSpec.isJTI() || DispSpec.isSymbol());
334 const MachineOperand &DispSpec = MI->getOperand(Op+3); local
359 if (!DispSpec.isImm()) {
363 int64_t DispVal = DispSpec
[all...]

Completed in 150 milliseconds