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

  /external/llvm/include/llvm/MC/
MCStreamer.h 192 /// SectionStack - This is stack of current and previous section
194 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack;
298 if (!SectionStack.empty())
299 return SectionStack.back().first;
306 if (!SectionStack.empty())
307 return SectionStack.back().second;
326 SectionStack.push_back(
335 if (SectionStack.size() <= 1)
337 MCSectionSubPair oldSection = SectionStack.pop_back_val().first;
338 MCSectionSubPair curSection = SectionStack.back().first
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 41 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
54 SectionStack.clear();
55 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());

Completed in 45 milliseconds