Home
last modified time | relevance | path

Searched refs:ControlledNopLength (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp633 int64_t ControlledNopLength = NF.getControlledNopLength(); in writeFragment() local
638 assert(ControlledNopLength >= 0 && "Expected non-negative NOP size"); in writeFragment()
640 if (ControlledNopLength > MaximumNopLength) { in writeFragment()
642 std::to_string(ControlledNopLength) + in writeFragment()
647 ControlledNopLength = MaximumNopLength; in writeFragment()
651 if (!ControlledNopLength) in writeFragment()
652 ControlledNopLength = MaximumNopLength; in writeFragment()
656 (uint64_t)std::min(NumBytes, ControlledNopLength); in writeFragment()
H A DMCObjectStreamer.cpp770 void MCObjectStreamer::emitNops(int64_t NumBytes, int64_t ControlledNopLength, in emitNops() argument
774 NumBytes, ControlledNopLength, Loc, STI)); in emitNops()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSection.h552 int64_t ControlledNopLength; variable
561 MCNopsFragment(int64_t NumBytes, int64_t ControlledNopLength, SMLoc L, in MCNopsFragment() argument
564 ControlledNopLength(ControlledNopLength), Loc(L), STI(STI) {} in MCNopsFragment()
567 int64_t getControlledNopLength() const { return ControlledNopLength; } in getControlledNopLength()
H A DMCObjectStreamer.h176 void emitNops(int64_t NumBytes, int64_t ControlledNopLength, SMLoc Loc,
H A DMCStreamer.h793 virtual void emitNops(int64_t NumBytes, int64_t ControlledNopLength,