Home
last modified time | relevance | path

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

/external/llvm/include/llvm/MC/
DMCFragment.h52 bool HasInstructions;
82 MCFragment(FragmentType Kind, bool HasInstructions,
112 bool hasInstructions() const { return HasInstructions; }
147 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions,
149 : MCFragment(FType, HasInstructions, 0, Sec) {}
174 bool HasInstructions,
176 : MCEncodedFragment(FType, HasInstructions, Sec) {}
195 bool HasInstructions,
197 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions,
227 void setHasInstructions(bool V) { HasInstructions = V; }
DMCSection.h91 unsigned HasInstructions : 1;
145 bool hasInstructions() const { return HasInstructions; }
146 void setHasInstructions(bool Value) { HasInstructions = Value; }
/external/llvm/lib/MC/
DMCFragment.cpp238 MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false), in MCFragment()
244 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
246 : Kind(Kind), HasInstructions(HasInstructions), AlignToBundleEnd(false), in MCFragment()
DMCSection.cpp23 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCAssembler.h461 unsigned HasInstructions : 1; variable
475 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
476 void setHasInstructions(bool Value) { HasInstructions = Value; } in setHasInstructions()
/external/swiftshader/third_party/LLVM/lib/MC/
DMCAssembler.cpp174 HasInstructions(false) in MCSectionData()