HomeSort by relevance Sort by last modified time
    Searched refs:hasInstructions (Results 1 - 17 of 17) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
MCSection.h 79 bool HasInstructions : 1;
137 bool hasInstructions() const { return HasInstructions; }
138 void setHasInstructions(bool Value) { HasInstructions = Value; }
MCFragment.h 56 bool HasInstructions;
81 MCFragment(FragmentType Kind, bool HasInstructions,
110 bool hasInstructions() const { return HasInstructions; }
135 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions,
137 : MCFragment(FType, HasInstructions, Sec) {}
173 /// Guaranteed to be non-null if hasInstructions() == true
179 HasInstructions = true;
193 bool HasInstructions,
195 : MCEncodedFragment(FType, HasInstructions, Sec) {
    [all...]
  /external/llvm/include/llvm/MC/
MCSection.h 91 unsigned HasInstructions : 1;
145 bool hasInstructions() const { return HasInstructions; }
146 void setHasInstructions(bool Value) { HasInstructions = Value; }
MCFragment.h 52 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,
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCAssembler.cpp 426 if (Assembler.isBundlingEnabled() && F->hasInstructions()) {
463 assert(EF.hasInstructions() &&
816 assert(!FragWithFixups->hasInstructions() || STI != nullptr);
821 assert(!FragWithFixups->hasInstructions() || STI != nullptr);
    [all...]
MCFragment.cpp 238 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions,
240 : Kind(Kind), HasInstructions(HasInstructions), Parent(Parent),
336 << " Offset:" << Offset << " HasInstructions:" << hasInstructions();
MCObjectStreamer.cpp 126 if (!F.hasInstructions())
292 return Sec.hasInstructions();
MCELFStreamer.cpp 141 if (Section && Assembler.isBundlingEnabled() && Section->hasInstructions() &&
WasmObjectWriter.cpp 621 if (Frag.hasInstructions())
    [all...]
MachObjectWriter.cpp 840 if (Sec.hasInstructions())
    [all...]
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 106 F->hasInstructions())) {
225 return Sec.hasInstructions();
MCFragment.cpp 238 MCFragment::MCFragment() : Kind(FragmentType(~0)), HasInstructions(false),
244 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions,
246 : Kind(Kind), HasInstructions(HasInstructions), AlignToBundleEnd(false),
342 << " HasInstructions:" << hasInstructions()
MCAssembler.cpp 361 if (Assembler.isBundlingEnabled() && F->hasInstructions()) {
395 assert(F.hasInstructions() &&
MCELFStreamer.cpp 131 if (Section && Assembler.isBundlingEnabled() && Section->hasInstructions() &&
MachObjectWriter.cpp 808 if (Sec.hasInstructions())
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAssembler.h 459 /// HasInstructions - Whether this section has had instructions emitted into
461 unsigned HasInstructions : 1;
475 bool hasInstructions() const { return HasInstructions; }
476 void setHasInstructions(bool Value) { HasInstructions = Value; }
  /external/swiftshader/third_party/LLVM/lib/MC/
MachObjectWriter.cpp 215 if (SD.hasInstructions())

Completed in 106 milliseconds