Lines Matching defs:target
67 LDSection* target = m_Module.getSection(output_name);
69 if (target == NULL) {
70 target = LDSection::Create(output_name,
74 target->setAlign(pInputSection.align());
75 m_Module.getSectionTable().push_back(target);
78 switch (target->kind()) {
81 if (target->hasEhFrame())
82 eh_frame = target->getEhFrame();
84 eh_frame = IRBuilder::CreateEhFrame(*target);
87 UpdateSectionAlign(*target, pInputSection);
88 return target;
92 if (target->hasDebugString())
93 debug_str = target->getDebugString();
95 debug_str = IRBuilder::CreateDebugString(*target);
98 UpdateSectionAlign(*target, pInputSection);
99 return target;
102 if (!target->hasSectionData())
103 IRBuilder::CreateSectionData(*target);
116 data = target->getSectionData();
120 UpdateSectionAlign(*target, pInputSection);
121 return target;
126 return target;