Home
last modified time | relevance | path

Searched refs:HasInstructions (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h77 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 DMCSection.h90 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 DMCFragment.cpp258 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
261 Kind(Kind), IsBeingLaidOut(false), HasInstructions(HasInstructions) { in MCFragment()
H A DMCSection.cpp25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()