Searched refs:new_seg (Results 1 – 8 of 8) sorted by relevance
/openbsd/gnu/usr.bin/binutils/gas/ |
H A D | subsegs.c | 367 segT new_seg; local 368 new_seg = obj_add_segment (segname); 369 subseg_set (new_seg, subseg); 370 return new_seg;
|
/openbsd/gnu/usr.bin/binutils-2.17/gas/config/ |
H A D | tc-alpha.c | 3255 segT new_seg; in s_alpha_comm() local 3285 new_seg = subseg_new (xstrdup (name), 0); in s_alpha_comm() 3298 bfd_set_section_alignment (stdoutput, new_seg, align); in s_alpha_comm() 3310 if (bfd_section_size (stdoutput, new_seg) > 0) in s_alpha_comm() 3312 if (bfd_section_size (stdoutput, new_seg) != temp) in s_alpha_comm() 3315 (long) bfd_section_size (stdoutput, new_seg), in s_alpha_comm() 3331 subseg_set (new_seg, 0); in s_alpha_comm() 3333 new_seg->flags |= SEC_IS_COMMON; in s_alpha_comm() 3334 S_SET_SEGMENT (symbolP, new_seg); in s_alpha_comm()
|
H A D | tc-mips.c | 9345 segT new_seg; in mips_ip() local 9366 new_seg = subseg_new (newname, (subsegT) 0); in mips_ip() 9368 bfd_set_section_flags (stdoutput, new_seg, in mips_ip() 9376 record_alignment (new_seg, 4); in mips_ip() 9378 record_alignment (new_seg, *args == 'l' ? 2 : 3); in mips_ip()
|
H A D | tc-xtensa.c | 9391 fix_new_exp_in_seg (segT new_seg, in fix_new_exp_in_seg() argument 9404 assert (new_seg != 0); in fix_new_exp_in_seg() 9405 subseg_set (new_seg, new_subseg); in fix_new_exp_in_seg()
|
/openbsd/gnu/usr.bin/binutils/gas/config/ |
H A D | tc-alpha.c | 4242 segT new_seg; local 4272 new_seg = subseg_new (xstrdup (name), 0); 4285 bfd_set_section_alignment (stdoutput, new_seg, align); 4297 if (bfd_section_size (stdoutput, new_seg) > 0) 4299 if (bfd_section_size (stdoutput, new_seg) != temp) 4302 (long) bfd_section_size (stdoutput, new_seg), 4318 subseg_set (new_seg, 0); 4320 new_seg->flags |= SEC_IS_COMMON; 4322 S_SET_SEGMENT (symbolP, new_seg);
|
H A D | tc-xtensa.c | 7213 fix_new_exp_in_seg (new_seg, new_subseg, in fix_new_exp_in_seg() argument 7215 segT new_seg; in fix_new_exp_in_seg() 7227 assert (new_seg != 0); 7228 subseg_set (new_seg, new_subseg);
|
H A D | tc-mips.c | 9263 segT new_seg; in mips_ip() local 9289 new_seg = subseg_new (newname, (subsegT) 0); in mips_ip() 9291 bfd_set_section_flags (stdoutput, new_seg, in mips_ip() 9299 record_alignment (new_seg, 4); in mips_ip() 9301 record_alignment (new_seg, *args == 'l' ? 2 : 3); in mips_ip()
|
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/ |
H A D | ObjectFileMachO.cpp | 6949 std::tuple<ConstString, addr_t> new_seg{ConstString(segname), 6951 image_entry.segment_load_addresses.push_back(new_seg);
|