Searched refs:ControlledNopLength (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 633 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 D | MCObjectStreamer.cpp | 770 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 D | MCSection.h | 552 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 D | MCObjectStreamer.h | 176 void emitNops(int64_t NumBytes, int64_t ControlledNopLength, SMLoc Loc,
|
| H A D | MCStreamer.h | 793 virtual void emitNops(int64_t NumBytes, int64_t ControlledNopLength,
|