Searched refs:HasInstructions (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCFragment.h | 73 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 D | MCSection.h | 100 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 D | MCFragment.cpp | 29 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions) in MCFragment() argument 30 : Kind(Kind), HasInstructions(HasInstructions), LinkerRelaxable(false) {} in MCFragment()
|
| H A D | MCSection.cpp | 25 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()
|