Home | History | Annotate | Download | only in X86

Lines Matching refs:DispVal

97     void emitDisplacementField(const MachineOperand *RelocOp, int DispVal,
413 int DispVal,
419 emitConstant(DispVal, 4);
453 int DispVal = 0;
465 DispVal += MCE.getConstantPoolEntryAddress(Op3.getIndex());
466 DispVal += Op3.getOffset();
472 DispVal += MCE.getJumpTableEntryAddress(Op3.getIndex());
475 DispVal = Op3.getImm();
490 emitDisplacementField(DispForReloc, DispVal, PCAdj, true);
519 emitDisplacementField(DispForReloc, DispVal, PCAdj, true);
527 if (!DispForReloc && DispVal == 0 && BaseRegNo != N86::EBP) {
533 if (!DispForReloc && isDisp8(DispVal)) {
535 emitConstant(DispVal, 1);
541 emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);
560 } else if (DispVal == 0 && BaseRegNo != N86::EBP) {
563 } else if (isDisp8(DispVal)) {
597 emitConstant(DispVal, 1);
598 } else if (DispVal != 0 || ForceDisp32) {
599 emitDisplacementField(DispForReloc, DispVal, PCAdj, IsPCRel);