Lines Matching refs:com_sym

1510   SymbolCategory::iterator com_sym, com_end;  in allocateCommonSymbols()  local
1540 for (com_sym = symbol_list.localBegin(); com_sym != com_end; ++com_sym) { in allocateCommonSymbols()
1541 if (ResolveInfo::Common == (*com_sym)->desc()) { in allocateCommonSymbols()
1547 (*com_sym)->resolveInfo()->setDesc(ResolveInfo::Define); in allocateCommonSymbols()
1548 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); in allocateCommonSymbols()
1550 if (ResolveInfo::ThreadLocal == (*com_sym)->type()) { in allocateCommonSymbols()
1553 *frag, *tbss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
1554 ObjectBuilder::UpdateSectionAlign(tbss_sect, (*com_sym)->value()); in allocateCommonSymbols()
1555 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
1558 *frag, *bss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
1559 ObjectBuilder::UpdateSectionAlign(bss_sect, (*com_sym)->value()); in allocateCommonSymbols()
1560 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
1567 for (com_sym = symbol_list.commonBegin(); com_sym != com_end; ++com_sym) { in allocateCommonSymbols()
1573 (*com_sym)->resolveInfo()->setDesc(ResolveInfo::Define); in allocateCommonSymbols()
1574 Fragment* frag = new FillFragment(0x0, 1, (*com_sym)->size()); in allocateCommonSymbols()
1576 if (ResolveInfo::ThreadLocal == (*com_sym)->type()) { in allocateCommonSymbols()
1579 *frag, *tbss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
1580 ObjectBuilder::UpdateSectionAlign(tbss_sect, (*com_sym)->value()); in allocateCommonSymbols()
1581 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()
1584 *frag, *bss_sect_data, (*com_sym)->value()); in allocateCommonSymbols()
1585 ObjectBuilder::UpdateSectionAlign(bss_sect, (*com_sym)->value()); in allocateCommonSymbols()
1586 (*com_sym)->setFragmentRef(FragmentRef::Create(*frag, 0)); in allocateCommonSymbols()