Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h378 int64_t ControlledNopLength; variable
387 MCNopsFragment(int64_t NumBytes, int64_t ControlledNopLength, SMLoc L,
390 ControlledNopLength(ControlledNopLength), Loc(L), STI(STI) {} in MCFragment()
393 int64_t getControlledNopLength() const { return ControlledNopLength; } in getControlledNopLength()
H A DMCObjectStreamer.h202 void emitNops(int64_t NumBytes, int64_t ControlledNopLength, SMLoc Loc,
H A DMCStreamer.h848 virtual void emitNops(int64_t NumBytes, int64_t ControlledNopLength,
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp638 int64_t ControlledNopLength = NF.getControlledNopLength(); in writeFragment() local
643 assert(ControlledNopLength >= 0 && "Expected non-negative NOP size"); in writeFragment()
645 if (ControlledNopLength > MaximumNopLength) { in writeFragment()
648 std::to_string(ControlledNopLength) + in writeFragment()
653 ControlledNopLength = MaximumNopLength; in writeFragment()
657 if (!ControlledNopLength) in writeFragment()
658 ControlledNopLength = MaximumNopLength; in writeFragment()
662 (uint64_t)std::min(NumBytes, ControlledNopLength); in writeFragment()
H A DMCObjectStreamer.cpp885 void MCObjectStreamer::emitNops(int64_t NumBytes, int64_t ControlledNopLength, in emitNops() argument
893 insert(new MCNopsFragment(NumBytes, ControlledNopLength, Loc, STI)); in emitNops()