Home
last modified time | relevance | path

Searched refs:HasInstructions (Results 1 – 10 of 10) 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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCFragment.h56 bool HasInstructions;
81 MCFragment(FragmentType Kind, bool HasInstructions,
110 bool hasInstructions() const { return HasInstructions; } in hasInstructions()
135 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions, in MCEncodedFragment() argument
137 : MCFragment(FType, HasInstructions, Sec) {} in MCEncodedFragment()
179 HasInstructions = true; in setHasInstructions()
193 bool HasInstructions, in MCEncodedFragmentWithContents() argument
195 : MCEncodedFragment(FType, HasInstructions, Sec) {} in MCEncodedFragmentWithContents()
214 bool HasInstructions, in MCEncodedFragmentWithFixups() argument
216 : MCEncodedFragmentWithContents<ContentsSize>(FType, HasInstructions, in MCEncodedFragmentWithFixups()
DMCSection.h79 bool HasInstructions : 1;
137 bool hasInstructions() const { return HasInstructions; }
138 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-7.0/llvm/lib/MC/
DMCFragment.cpp238 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions, in MCFragment() argument
240 : Kind(Kind), HasInstructions(HasInstructions), Parent(Parent), in MCFragment()
DMCSection.cpp25 : 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()