Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h365 int64_t ControlledNopLength; variable
374 MCNopsFragment(int64_t NumBytes, int64_t ControlledNopLength, SMLoc L, in MCNopsFragment() argument
377 ControlledNopLength(ControlledNopLength), Loc(L), STI(STI) {} in MCNopsFragment()
380 int64_t getControlledNopLength() const { return ControlledNopLength; } in getControlledNopLength()
H A DMCObjectStreamer.h182 void emitNops(int64_t NumBytes, int64_t ControlledNopLength, SMLoc Loc,
H A DMCStreamer.h813 virtual void emitNops(int64_t NumBytes, int64_t ControlledNopLength,
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp731 int64_t ControlledNopLength = NF.getControlledNopLength(); in writeFragment() local
736 assert(ControlledNopLength >= 0 && "Expected non-negative NOP size"); in writeFragment()
738 if (ControlledNopLength > MaximumNopLength) { in writeFragment()
741 std::to_string(ControlledNopLength) + in writeFragment()
746 ControlledNopLength = MaximumNopLength; in writeFragment()
750 if (!ControlledNopLength) in writeFragment()
751 ControlledNopLength = MaximumNopLength; in writeFragment()
755 (uint64_t)std::min(NumBytes, ControlledNopLength); in writeFragment()
H A DMCObjectStreamer.cpp779 void MCObjectStreamer::emitNops(int64_t NumBytes, int64_t ControlledNopLength, in emitNops() argument
783 NumBytes, ControlledNopLength, Loc, STI)); in emitNops()