Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCFragment.h78 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.h81 bool HasInstructions : 1;
151 bool hasInstructions() const { return HasInstructions; }
152 void setHasInstructions(bool Value) { HasInstructions = Value; }
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCFragment.cpp254 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
257 Kind(Kind), IsBeingLaidOut(false), HasInstructions(HasInstructions) { in MCFragment()
H A DMCSection.cpp25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()