Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCFragment.h69 bool HasInstructions;
71 MCFragment(FragmentType Kind, bool HasInstructions,
98 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
120 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
122 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
165 HasInstructions = true; in setHasInstructions()
179 bool HasInstructions, in MCEncodedFragmentWithContents() argument
181 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
200 bool HasInstructions, in MCEncodedFragmentWithFixups() argument
202 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
DMCSection.h79 bool HasInstructions : 1;
146 bool hasInstructions() const { return HasInstructions; }
147 void setHasInstructions(bool Value) { HasInstructions = Value; }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCFragment.cpp235 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
238 Kind(Kind), HasInstructions(HasInstructions) { in MCFragment()
DMCSection.cpp24 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false), in MCSection()