Lines Matching refs:sections
90 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); in addEntryPoint() local
91 sections->push_back(entry); in addEntryPoint()
149 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); in addAssignment() local
151 assert(!sections->empty()); in addAssignment()
153 llvm::cast<OutputSectDesc>(sections->back()); in addAssignment()
159 sections->push_back(new Assignment(Assignment::OUTPUT_SECTION, in addAssignment()
190 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); in enterOutputSectDesc() local
191 sections->push_back(new OutputSectDesc(pName, pProlog)); in enterOutputSectDesc()
199 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); in leaveOutputSectDesc() local
201 assert(!sections->empty() && m_bInOutputSectDesc); in leaveOutputSectDesc()
202 OutputSectDesc* output_desc = llvm::cast<OutputSectDesc>(sections->back()); in leaveOutputSectDesc()
212 SectionsCmd* sections = llvm::cast<SectionsCmd>(back()); in addInputSectDesc() local
214 assert(!sections->empty() && m_bInOutputSectDesc); in addInputSectDesc()
215 OutputSectDesc* output_sect = llvm::cast<OutputSectDesc>(sections->back()); in addInputSectDesc()