Searched refs:SectionStack (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/MC/
H A DMCStreamer.h192 /// SectionStack - This is stack of current and previous section
194 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; member in class:llvm::MCStreamer
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
[all...]
/external/llvm/lib/MC/
H A DMCStreamer.cpp41 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());
54 SectionStack.clear();
55 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>());

Completed in 78 milliseconds