Home | History | Annotate | Download | only in MC

Lines Matching defs:Section

51 AssemblerConstantPools::getConstantPool(const MCSection *Section) {
52 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section);
60 AssemblerConstantPools::getOrCreateConstantPool(const MCSection *Section) {
61 return ConstantPools[Section];
64 static void emitConstantPool(MCStreamer &Streamer, const MCSection *Section,
67 Streamer.SwitchSection(Section);
77 const MCSection *Section = CPI->first;
80 emitConstantPool(Streamer, Section, CP);
85 const MCSection *Section = Streamer.getCurrentSection().first;
86 if (ConstantPool *CP = getConstantPool(Section)) {
87 emitConstantPool(Streamer, Section, *CP);
93 const MCSection *Section = Streamer.getCurrentSection().first;
94 return getOrCreateConstantPool(Section).addEntry(Expr, Streamer.getContext());