Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCFragment.h77 bool HasInstructions;
79 MCFragment(FragmentType Kind, bool HasInstructions,
106 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
131 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
133 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
177 HasInstructions = true; in setHasInstructions()
191 bool HasInstructions, in MCEncodedFragmentWithContents() argument
193 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
212 bool HasInstructions, in MCEncodedFragmentWithFixups() argument
214 : 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; }
/openbsd-src/gnu/llvm/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()