Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCAssembler.h63 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; }
DMCSection.h92 unsigned HasInstructions : 1;
146 bool hasInstructions() const { return HasInstructions; }
147 void setHasInstructions(bool Value) { HasInstructions = Value; }
/external/llvm/lib/MC/
DMCSection.cpp23 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()
DMCAssembler.cpp275 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()