Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:Section

135 /// section.  This can be done with a special directive if the target supports
137 /// of the section.
139 /// SectionLabel is a temporary label emitted at the start of the section that
149 // Get the section that we're referring to, based on SectionLabel.
150 const MCSection &Section = SectionLabel->getSection();
152 // If Label has already been emitted, verify that it is in the same section as
153 // section label for sanity.
154 assert((!Label->isInSection() || &Label->getSection() == &Section) &&
155 "Section offset using wrong section base for label");
157 // If the section in question will end up with an address of 0 anyway, we can
159 if (Section.isBaseAddressKnownZero()) {
164 // Otherwise, emit it as a label difference from the start of the section.