HomeSort by: relevance | last modified time | path
    Searched refs:hasInstructions (Results 1 - 11 of 11) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSection.h 81 bool HasInstructions : 1;
151 bool hasInstructions() const { return HasInstructions; }
152 void setHasInstructions(bool Value) { HasInstructions = Value; }
MCFragment.h 78 bool HasInstructions;
80 MCFragment(FragmentType Kind, bool HasInstructions,
107 bool hasInstructions() const { return HasInstructions; }
132 MCEncodedFragment(MCFragment::FragmentType FType, bool HasInstructions,
134 : MCFragment(FType, HasInstructions, Sec) {}
172 /// Guaranteed to be non-null if hasInstructions() == true
178 HasInstructions = true;
192 bool HasInstructions,
194 : MCEncodedFragment(FType, HasInstructions, Sec) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 280 if (Sec.getKind().isExecuteOnly() && !TextSection->hasInstructions()) {
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAssembler.cpp 445 if (Assembler.isBundlingEnabled() && F->hasInstructions()) {
482 assert(EF.hasInstructions() &&
896 assert(!DF.hasInstructions() || STI != nullptr);
904 assert(!RF.hasInstructions() || STI != nullptr);
MCFragment.cpp 254 MCFragment::MCFragment(FragmentType Kind, bool HasInstructions,
257 Kind(Kind), IsBeingLaidOut(false), HasInstructions(HasInstructions) {
364 << " Offset:" << Offset << " HasInstructions:" << hasInstructions();
MCObjectStreamer.cpp 196 if (!F.hasInstructions())
364 return Sec.hasInstructions();
MCELFStreamer.cpp 141 if (Section && Assembler.isBundlingEnabled() && Section->hasInstructions() &&
MCExpr.cpp 686 if (!CheckSym.getSection().hasInstructions())
WasmObjectWriter.cpp 658 if (Frag.hasInstructions())
1813 if (Frag.hasInstructions() || Frag.getKind() != MCFragment::FT_Data)
MachObjectWriter.cpp 857 if (Sec.hasInstructions())
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
X86AsmBackend.cpp 520 if (!F || !F->hasInstructions())

Completed in 71 milliseconds