Home | History | Annotate | Download | only in X86

Lines Matching refs:DispVal

90     void emitDisplacementField(const MachineOperand *RelocOp, int DispVal,
402 int DispVal,
408 emitConstant(DispVal, 4);
442 int DispVal = 0;
454 DispVal += MCE.getConstantPoolEntryAddress(Op3.getIndex());
455 DispVal += Op3.getOffset();
461 DispVal += MCE.getJumpTableEntryAddress(Op3.getIndex());
464 DispVal = Op3.getImm();
479 emitDisplacementField(DispForReloc, DispVal, PCAdj, true);
508 emitDisplacementField(DispForReloc, DispVal, PCAdj, true);
516 if (!DispForReloc && DispVal == 0 && BaseRegNo != N86::EBP) {
522 if (!DispForReloc && isDisp8(DispVal)) {
524 emitConstant(DispVal, 1);
530 emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);
549 } else if (DispVal == 0 && BaseRegNo != N86::EBP) {
552 } else if (isDisp8(DispVal)) {
586 emitConstant(DispVal, 1);
587 } else if (DispVal != 0 || ForceDisp32) {
588 emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);