Searched refs:ControlledNopLength (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 365 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 D | MCObjectStreamer.h | 182 void emitNops(int64_t NumBytes, int64_t ControlledNopLength, SMLoc Loc,
|
| H A D | MCStreamer.h | 813 virtual void emitNops(int64_t NumBytes, int64_t ControlledNopLength,
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 731 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 D | MCObjectStreamer.cpp | 779 void MCObjectStreamer::emitNops(int64_t NumBytes, int64_t ControlledNopLength, in emitNops() argument 783 NumBytes, ControlledNopLength, Loc, STI)); in emitNops()
|