• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/parisc/kernel/

Lines Matching refs:arch

5  *        http://ftp.parisc-linux.org/docs/arch/elf-pa-hp.pdf
273 me->arch.unwind_section = i;
294 me->arch.got_offset = me->core_size;
298 me->arch.fdesc_offset = me->core_size;
302 me->arch.stub_offset = me->core_size;
306 me->arch.init_stub_offset = me->init_size;
309 me->arch.got_max = gots;
310 me->arch.fdesc_max = fdescs;
311 me->arch.stub_max = stubs;
312 me->arch.init_stub_max = init_stubs;
327 got = me->module_core + me->arch.got_offset;
332 BUG_ON(++me->arch.got_count > me->arch.got_max);
345 Elf_Fdesc *fdesc = me->module_core + me->arch.fdesc_offset;
359 BUG_ON(++me->arch.fdesc_count > me->arch.fdesc_max);
363 fdesc->gp = (Elf_Addr)me->module_core + me->arch.got_offset;
381 i = me->arch.init_stub_count++;
382 BUG_ON(me->arch.init_stub_count > me->arch.init_stub_max);
383 stub = me->module_init + me->arch.init_stub_offset +
386 i = me->arch.stub_count++;
387 BUG_ON(me->arch.stub_count > me->arch.stub_max);
388 stub = me->module_core + me->arch.stub_offset +
710 if (!me->arch.unwind_section)
713 table = (unsigned char *)sechdrs[me->arch.unwind_section].sh_addr;
714 end = table + sechdrs[me->arch.unwind_section].sh_size;
715 gp = (Elf_Addr)me->module_core + me->arch.got_offset;
718 me->arch.unwind_section, table, end, gp);
719 me->arch.unwind = unwind_table_add(me->name, 0, gp, table, end);
725 if (me->arch.unwind)
726 unwind_table_remove(me->arch.unwind);
752 me->arch.stub_count, me->arch.stub_max,
753 me->arch.init_stub_count, me->arch.init_stub_max,
754 me->arch.got_count, me->arch.got_max,
755 me->arch.fdesc_count, me->arch.fdesc_max);
775 if(me->arch.got_count > MAX_GOTS) {
777 me->name, me->arch.got_count, MAX_GOTS);