Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCFragment.h73 bool HasInstructions : 1;
76 MCFragment(FragmentType Kind, bool HasInstructions);
103 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
125 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions) in MCEncodedFragment() argument
126 : MCFragment(FType, HasInstructions) {} in MCEncodedFragment()
170 HasInstructions = true; in setHasInstructions()
184 bool HasInstructions) in MCEncodedFragmentWithContents() argument
185 : MCEncodedFragment(FType, HasInstructions) {} in MCEncodedFragmentWithContents()
204 bool HasInstructions) in MCEncodedFragmentWithFixups() argument
205 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions) {} in MCEncodedFragmentWithFixups()
H A DMCSection.h100 bool HasInstructions : 1; variable
169 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
170 void setHasInstructions(bool Value) { HasInstructions = Value; } in setHasInstructions()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp29 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions) in MCFragment() argument
30 : Kind(Kind), HasInstructions(HasInstructions), LinkerRelaxable(false) {} in MCFragment()
H A DMCSection.cpp25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()