make_textsym
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. #
  3. # Build a textsym file for use in the Arium ITP probe.
  4. #
  5. #
  6. # This file is subject to the terms and conditions of the GNU General Public
  7. # License.  See the file "COPYING" in the main directory of this archive
  8. # for more details.
  9. #
  10. # Copyright (c) 2001-2002 Silicon Graphics, Inc.  All rights reserved.
  11. #
  12. help() {
  13. cat <<END
  14. Build a WinDD "symtxt" file for use with the Arium ECM-30 probe.
  15. Usage: $0 [<vmlinux file> [<output file>]]
  16. If no input file is specified, it defaults to vmlinux.
  17. If no output file name is specified, it defaults to "textsym".
  18. END
  19. exit 1
  20. }
  21. err () {
  22. echo "ERROR - $*" >&2
  23. exit 1
  24. }
  25. OPTS="H"
  26. while getopts "$OPTS" c ; do
  27. case $c in
  28. H)  help;;
  29. ?) help;;
  30. esac
  31. done
  32. shift `expr $OPTIND - 1`
  33. LINUX=${1:-vmlinux}
  34. TEXTSYM=${2:-${LINUX}.sym}
  35. TMPSYM=${2:-${LINUX}.sym.tmp}
  36. trap "/bin/rm -f $TMPSYM" 0
  37. [ -f $VMLINUX ] || help
  38. $OBJDUMP -t $LINUX | sort > $TMPSYM
  39. SN1=`egrep "dig_setup|Synergy_da_indr" $TMPSYM|wc -l`
  40. # Dataprefix and textprefix correspond to the VGLOBAL_BASE and VPERNODE_BASE.
  41. # Eventually, these values should be:
  42. # dataprefix ffffffff
  43. # textprefix fffffffe
  44. # but right now they're still changing, so make them dynamic.
  45. dataprefix=`awk ' / .data / { print substr($1, 0, 8) ; exit ; }' $TMPSYM`
  46. textprefix=`awk ' / .text / { print substr($1, 0, 8) ; exit ; }' $TMPSYM`
  47. # pipe everything thru sort
  48. echo "TEXTSYM V1.0"
  49. (cat <<END 
  50. GLOBAL | ${textprefix}00400000 | CODE | VEC_VHPT_Translation_0000
  51. GLOBAL | ${textprefix}00400400 | CODE | VEC_ITLB_0400
  52. GLOBAL | ${textprefix}00400800 | CODE | VEC_DTLB_0800
  53. GLOBAL | ${textprefix}00400c00 | CODE | VEC_Alt_ITLB_0c00
  54. GLOBAL | ${textprefix}00401000 | CODE | VEC_Alt_DTLB_1000
  55. GLOBAL | ${textprefix}00401400 | CODE | VEC_Data_nested_TLB_1400
  56. GLOBAL | ${textprefix}00401800 | CODE | VEC_Instruction_Key_Miss_1800
  57. GLOBAL | ${textprefix}00401c00 | CODE | VEC_Data_Key_Miss_1c00
  58. GLOBAL | ${textprefix}00402000 | CODE | VEC_Dirty-bit_2000
  59. GLOBAL | ${textprefix}00402400 | CODE | VEC_Instruction_Access-bit_2400
  60. GLOBAL | ${textprefix}00402800 | CODE | VEC_Data_Access-bit_2800
  61. GLOBAL | ${textprefix}00402c00 | CODE | VEC_Break_instruction_2c00
  62. GLOBAL | ${textprefix}00403000 | CODE | VEC_External_Interrupt_3000
  63. GLOBAL | ${textprefix}00403400 | CODE | VEC_Reserved_3400
  64. GLOBAL | ${textprefix}00403800 | CODE | VEC_Reserved_3800
  65. GLOBAL | ${textprefix}00403c00 | CODE | VEC_Reserved_3c00
  66. GLOBAL | ${textprefix}00404000 | CODE | VEC_Reserved_4000
  67. GLOBAL | ${textprefix}00404400 | CODE | VEC_Reserved_4400
  68. GLOBAL | ${textprefix}00404800 | CODE | VEC_Reserved_4800
  69. GLOBAL | ${textprefix}00404c00 | CODE | VEC_Reserved_4c00
  70. GLOBAL | ${textprefix}00405000 | CODE | VEC_Page_Not_Present_5000
  71. GLOBAL | ${textprefix}00405100 | CODE | VEC_Key_Permission_5100
  72. GLOBAL | ${textprefix}00405200 | CODE | VEC_Instruction_Access_Rights_5200
  73. GLOBAL | ${textprefix}00405300 | CODE | VEC_Data_Access_Rights_5300
  74. GLOBAL | ${textprefix}00405400 | CODE | VEC_General_Exception_5400
  75. GLOBAL | ${textprefix}00405500 | CODE | VEC_Disabled_FP-Register_5500
  76. GLOBAL | ${textprefix}00405600 | CODE | VEC_Nat_Consumption_5600
  77. GLOBAL | ${textprefix}00405700 | CODE | VEC_Speculation_5700
  78. GLOBAL | ${textprefix}00405800 | CODE | VEC_Reserved_5800
  79. GLOBAL | ${textprefix}00405900 | CODE | VEC_Debug_5900
  80. GLOBAL | ${textprefix}00405a00 | CODE | VEC_Unaligned_Reference_5a00
  81. GLOBAL | ${textprefix}00405b00 | CODE | VEC_Unsupported_Data_Reference_5b00
  82. GLOBAL | ${textprefix}00405c00 | CODE | VEC_Floating-Point_Fault_5c00
  83. GLOBAL | ${textprefix}00405d00 | CODE | VEC_Floating_Point_Trap_5d00
  84. GLOBAL | ${textprefix}00405e00 | CODE | VEC_Lower_Privilege_Tranfer_Trap_5e00
  85. GLOBAL | ${textprefix}00405f00 | CODE | VEC_Taken_Branch_Trap_5f00
  86. GLOBAL | ${textprefix}00406000 | CODE | VEC_Single_Step_Trap_6000
  87. GLOBAL | ${textprefix}00406100 | CODE | VEC_Reserved_6100
  88. GLOBAL | ${textprefix}00406200 | CODE | VEC_Reserved_6200
  89. GLOBAL | ${textprefix}00406300 | CODE | VEC_Reserved_6300
  90. GLOBAL | ${textprefix}00406400 | CODE | VEC_Reserved_6400
  91. GLOBAL | ${textprefix}00406500 | CODE | VEC_Reserved_6500
  92. GLOBAL | ${textprefix}00406600 | CODE | VEC_Reserved_6600
  93. GLOBAL | ${textprefix}00406700 | CODE | VEC_Reserved_6700
  94. GLOBAL | ${textprefix}00406800 | CODE | VEC_Reserved_6800
  95. GLOBAL | ${textprefix}00406900 | CODE | VEC_IA-32_Exeception_6900
  96. GLOBAL | ${textprefix}00406a00 | CODE | VEC_IA-32_Intercept_6a00
  97. GLOBAL | ${textprefix}00406b00 | CODE | VEC_IA-32_Interrupt_6b00
  98. GLOBAL | ${textprefix}00406c00 | CODE | VEC_Reserved_6c00
  99. GLOBAL | ${textprefix}00406d00 | CODE | VEC_Reserved_6d00
  100. GLOBAL | ${textprefix}00406e00 | CODE | VEC_Reserved_6e00
  101. GLOBAL | ${textprefix}00406f00 | CODE | VEC_Reserved_6f00
  102. GLOBAL | ${textprefix}00407000 | CODE | VEC_Reserved_7000
  103. GLOBAL | ${textprefix}00407100 | CODE | VEC_Reserved_7100
  104. GLOBAL | ${textprefix}00407200 | CODE | VEC_Reserved_7200
  105. GLOBAL | ${textprefix}00407300 | CODE | VEC_Reserved_7300
  106. GLOBAL | ${textprefix}00407400 | CODE | VEC_Reserved_7400
  107. GLOBAL | ${textprefix}00407500 | CODE | VEC_Reserved_7500
  108. GLOBAL | ${textprefix}00407600 | CODE | VEC_Reserved_7600
  109. GLOBAL | ${textprefix}00407700 | CODE | VEC_Reserved_7700
  110. GLOBAL | ${textprefix}00407800 | CODE | VEC_Reserved_7800
  111. GLOBAL | ${textprefix}00407900 | CODE | VEC_Reserved_7900
  112. GLOBAL | ${textprefix}00407a00 | CODE | VEC_Reserved_7a00
  113. GLOBAL | ${textprefix}00407b00 | CODE | VEC_Reserved_7b00
  114. GLOBAL | ${textprefix}00407c00 | CODE | VEC_Reserved_7c00
  115. GLOBAL | ${textprefix}00407d00 | CODE | VEC_Reserved_7d00
  116. GLOBAL | ${textprefix}00407e00 | CODE | VEC_Reserved_7e00
  117. GLOBAL | ${textprefix}00407f00 | CODE | VEC_Reserved_7f00
  118. END
  119. awk '
  120. /__start_gate_section/ {start=1}
  121. /^'${dataprefix}|${textprefix}'/ {
  122. if ($4 == ".kdb")
  123. next
  124. if (start && substr($NF,1,1) != "0") {
  125. type = substr($0,26,5)
  126. if (type == ".text")
  127. printf "GLOBAL | %s | CODE | %sn", $1, $NF
  128. else {
  129. n = 0
  130. s = $(NF-1)
  131. while (length(s) > 0) {
  132. n = n*16 + substr(s,1,1)
  133. s = substr(s,2)
  134. }
  135. printf "GLOBAL | %s | DATA | %s | %dn", $1, $NF, n
  136. }
  137. }
  138. if($NF == "_end") 
  139. exit
  140. }
  141. ' $TMPSYM ) | egrep -v " __device| __vendor" | awk -v sn1="$SN1" '
  142. /GLOBAL/ {
  143. print $0
  144. if (sn1 != 0) {
  145. /* 32 bits of sn1 physical addrs, */
  146. print substr($0,1,9) substr($0,18,18) "Phy_" substr($0,36)
  147. } else {
  148. /* 38 bits of sn2 physical addrs, need addr space bits */
  149. print substr($0,1,9) "30" substr($0,18,18) "Phy_" substr($0,36)
  150. }
  151. } ' | sort -k3
  152. N=`wc -l $TEXTSYM|awk '{print $1}'`
  153. echo "Generated TEXTSYM file" >&2
  154. echo "  $LINUX --> $TEXTSYM" >&2
  155. echo "  Found $N symbols" >&2