Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCFragment.h56 bool HasInstructions;
81 MCFragment(FragmentType Kind, bool HasInstructions,
110 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
135 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
137 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
179 HasInstructions = true; in setHasInstructions()
193 bool HasInstructions, in MCEncodedFragmentWithContents() argument
195 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
214 bool HasInstructions, in MCEncodedFragmentWithFixups() argument
216 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
H A DMCSection.h79 bool HasInstructions : 1;
141 bool hasInstructions() const { return HasInstructions; }
142 void setHasInstructions(bool Value) { HasInstructions = Value; }
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCFragment.cpp238 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
240 : Kind(Kind), HasInstructions(HasInstructions), LayoutOrder(0), in MCFragment()
H A DMCSection.cpp25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()