Searched refs:HasInstructions (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 77 bool HasInstructions; 80 MCFragment(FragmentType Kind, bool HasInstructions, 107 bool hasInstructions() const { return HasInstructions; } in hasInstructions() 132 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument 134 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment() 178 HasInstructions = true; in setHasInstructions() 192 bool HasInstructions, in MCEncodedFragmentWithContents() argument 194 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents() 213 bool HasInstructions, in MCEncodedFragmentWithFixups() argument 215 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
|
| H A D | MCSection.h | 90 bool HasInstructions : 1; 166 bool hasInstructions() const { return HasInstructions; } 167 void setHasInstructions(bool Value) { HasInstructions = Value; }
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCFragment.cpp | 258 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument 261 Kind(Kind), IsBeingLaidOut(false), HasInstructions(HasInstructions) { in MCFragment()
|
| H A D | MCSection.cpp | 25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()
|