Searched refs:HasInstructions (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/MC/ |
D | MCAssembler.h | 63 bool HasInstructions; 93 MCFragment(FragmentType Kind, bool HasInstructions, 123 bool hasInstructions() const { return HasInstructions; } 158 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, 160 : MCFragment(FType, HasInstructions, 0, Sec) {} 185 bool HasInstructions, 187 : MCEncodedFragment(FType, HasInstructions, Sec) {} 206 bool HasInstructions, 208 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, 237 void setHasInstructions(bool V) { HasInstructions = V; }
|
D | MCSection.h | 92 unsigned HasInstructions : 1; 146 bool hasInstructions() const { return HasInstructions; } 147 void setHasInstructions(bool Value) { HasInstructions = Value; }
|
/external/llvm/lib/MC/ |
D | MCSection.cpp | 23 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()
|
D | MCAssembler.cpp | 275 MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false), in MCFragment() 281 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument 283 : Kind(Kind), HasInstructions(HasInstructions), AlignToBundleEnd(false), in MCFragment()
|