1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
|
#!/usr/bin/tclsh
# Part of MCU 8051 IDE ( http://https://sourceforge.net/projects/mcu8051ide/ )
############################################################################
# Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 by Martin Ošmera #
# martin.osmera@gmail.com #
# #
# Copyright (C) 2014 by Moravia Microsystems, s.r.o. #
# martin.osmera@gmail.com #
# #
# This program is free software; you can redistribute it and#or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, write to the #
# Free Software Foundation, Inc., #
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
############################################################################
# >>> File inclusion guard
if { ! [ info exists _CODELISTING_TCL ] } {
set _CODELISTING_TCL _
# <<< File inclusion guard
# --------------------------------------------------------------------------
# DESCRIPTION
# Hepler namespace to generate code listing.
# This code is part of compiler (see 'compiler.tcl' and 'assembler.tcl').
# --------------------------------------------------------------------------
namespace eval CodeListing {
## Resulting LST code
# format: {lineNum address opcode value includeLevel macroLevel {lineContent}}
variable lst {}
variable Enabled 1 ;# Bool: LIST/NOLIST flag
variable pageNum ;# Page number
variable pageLines ;# Number of lines at the current page
variable header {} ;# Title string
variable errors_count 0 ;# Number of errors
variable warnings_count 0 ;# Number of warnings
variable symbol_table {} ;# Table of symbolic names
variable error_summary {} ;# Error summmary string
variable new_sync_map {} ;# Tempotary Map of lines in code listing
variable sync_map {} ;# Map of lines in code listing
variable tmp_lst {} ;# Tempotary LST code
# ----------------------------------------------------------------
# GENERAL PURPOSE PROCEDURES
# ----------------------------------------------------------------
## Format resulting code listing
# @access public
# @return String - code listing
proc getListing {} {
variable lst ;# Resulting LST code
variable error_summary ;# Error summmary string
variable errors_count ;# Number of errors
variable warnings_count ;# Number of warnings
variable symbol_table ;# Table of symbolic names
variable header ;# Title string
variable pageNum ;# Page number
variable pageLines ;# Number of lines at the current page
# Initialize NS variables
set pageNum 1
set pageLines 0
# Validate compiler settings
if {${::Compiler::Settings::PAGELENGTH} < 5} {
set Compiler::Settings::PAGELENGTH 5
} elseif {${::Compiler::Settings::PAGELENGTH} == 0} {
set Compiler::Settings::PAGING 0
}
if {${::Compiler::Settings::PAGEWIDTH} < 68} {
set Compiler::Settings::PAGEWIDTH 68
} elseif {${::Compiler::Settings::PAGEWIDTH} == 0} {
set Compiler::Settings::PAGEWIDTH 116
}
# Create page header
set header ${::Compiler::Settings::INPUT_FILE_NAME}
set len [string length ${::Compiler::Settings::INPUT_FILE_NAME}]
if {$len < 15} {
append header [string repeat { } [expr {15 - $len}]]
}
append header { } ${::Compiler::Settings::TITLE}
set len [string length $header]
incr len 23
# Adjust page header width
if {$len > ${::Compiler::Settings::PAGEWIDTH}} {
set header [string range $header 0 [expr {${::Compiler::Settings::PAGEWIDTH} - 24}]]
append header {... }
} elseif {$len < ${::Compiler::Settings::PAGEWIDTH}} {
set len [expr {${::Compiler::Settings::PAGEWIDTH} - $len}]
append header [string repeat { } $len]
}
# Create date
set len [string length ${::Compiler::Settings::DATE}]
if {$len > 10} {
set Compiler::Settings::DATE [string range 0 7 ${::Compiler::Settings::DATE}]
append Compiler::Settings::DATE {...}
} elseif {$len < 10} {
set len [expr {10 - $len}]
append Compiler::Settings::DATE [string repeat { } $len]
}
append header ${::Compiler::Settings::DATE} { PAGE}
# Create error summary and symbol table
create_error_summary
if {${::Compiler::Settings::SYMBOLS}} {
create_symbol_table
}
# Create code listing text
format_listing
append lst "\nASSEMBLY COMPLETE"
# Append final result
if {$errors_count == 1} {
append lst ", 1 ERROR FOUND"
} elseif {$errors_count > 1} {
append lst ", $errors_count ERRORS FOUND"
} else {
append lst ", NO ERRORS FOUND"
}
if {$warnings_count == 1} {
append lst ", 1 WARNING"
} elseif {$warnings_count > 1} {
append lst ", $warnings_count WARNINGS"
} else {
append lst ", NO WARNINGS"
}
# Create final result
append lst "\n"
# Error summary
if {($errors_count != 0) || ($warnings_count != 0)} {
append lst "\n\n"
append lst $error_summary
}
# Symbol table
if {${::Compiler::Settings::SYMBOLS}} {
append lst "\n\n"
append lst $symbol_table
}
# restore special characters
regsub -all {\\\\} $lst "\\" lst
regsub -all {\\\{} $lst "\{" lst
regsub -all {\\\}} $lst "\}" lst
regsub -all {\\\"} $lst "\"" lst
# Return result
return $lst
}
## Directive LIST
# @access public
# @parm Int idx - index where the directive occurred
# @return void
proc directive_list {idx} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
if {${::Compiler::Settings::_list} != 0} {return}
# Adjust code listing
set idx [getIdx $idx]
increment_sync_map $idx 1
set lst [linsert $lst $idx {LIST}]
}
## Directive NOLIST
# @access public
# @parm Int idx - index where the directive occurred
# @return void
proc directive_nolist {idx} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
if {${::Compiler::Settings::_list} != 0} {return}
# Adjust code listing
set idx [getIdx $idx]
incr idx
increment_sync_map $idx 1
set lst [linsert $lst $idx {NOLIST}]
}
## Debuging procedure
# Write current content of the code listing to stdout (max. 501 lines)
# @access public
# @return void
proc write_lst {} {
variable lst ;# Resulting LST code
variable sync_map ;# Map of lines in code listing
set idx 0
foreach line $lst {
puts "$idx:\t$line"
incr idx
if {$idx > 500} {break}
}
}
## Initialize code listing
# Should be called on preprocessor start up
# @access public
# @parm String data - input source code
# @return void
proc create_listing {data} {
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
variable lst ;# Resulting LST code
variable sync_map ;# Map of lines in code listing
variable error_summary ;# Error summmary string
variable symbol_table ;# Table of symbolic names
variable Enabled ;# Bool: LIST/NOLIST flag
# Reset NS variables
set lst {}
set Enabled 1
set sync_map {}
set symbol_table {}
set error_summary {}
# Initialize code listing list
set idx -1
foreach line $data {
incr idx
lappend lst [list {} {} {} 0 0 [lindex $line 2]]
lappend sync_map $idx
}
}
## Import table of symbolic names from preprocessor
# @access public
# @return void
proc import_symbolic_names {} {
variable symbol_table ;# Table of symbolic names
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
if {!${::Compiler::Settings::SYMBOLS}} {return}
# Iterate over definition ists and write them to the table
foreach def_list {
defined_BIT defined_CODE defined_DATA defined_IDATA
defined_XDATA defined_LABEL defined_EQU defined_EQU_SPEC
} val_array {
const_BIT const_CODE const_DATA const_IDATA
const_XDATA labels const_EQU const_EQU_SPEC
} type {
ADDR ADDR ADDR ADDR
ADDR ADDR NUMB SPEC
} char {
B C D I
X C N S
} \
{
# Get list of defined names
set def_list [subst -nocommands "\$PreProcessor::$def_list"]
# Write defined names to the table
foreach var $def_list {
set value [subst -nocommands "\$PreProcessor::${val_array}($var)"]
# Handle special constants
if {$char == {S}} {
lappend symbol_table [list \
[string toupper $var] \
$char \
$type \
[string toupper $value] \
1 0]
# Other constants ...
} else {
lappend symbol_table [list \
[string toupper $var] \
$char \
$type \
[get_4hex $value] \
1 0]
}
}
}
# Write defined variables (directive "SET")
foreach var ${::PreProcessor::defined_SET} {
set value [lindex $::PreProcessor::const_SET($var) {end 1}]
lappend symbol_table [list [string toupper $var] { } NUMB [get_4hex $value] 1 1]
}
# Write defined special variables (directive "SET")
foreach var ${::PreProcessor::defined_SET_SPEC} {
set value [lindex $::PreProcessor::const_SET_SPEC($var) {end 1}]
lappend symbol_table [list [string toupper $var] {S} SPEC [string toupper $value] 1 1]
}
# Sort table of symbols by names
set symbol_table [lsort -index 0 $symbol_table]
}
## Set flag used to 1 for symbol written in table of symbols
# @access public
# @parm String symbolic_name - Symbol name
# @parm String type - Symbol type
# @return Bool - result
proc symbol_used {symbolic_name type} {
variable symbol_table ;# Table of symbolic names
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
if {!${::Compiler::Settings::SYMBOLS}} {return}
# Find the specified symbol in the table
set symbolic_name [string toupper $symbolic_name]
set idx -1
foreach var $symbol_table {
incr idx
# Symbol found -> set flag used
if {[lindex $var 0] == $symbolic_name} {
lset symbol_table [list $idx 4] 0
return 1
}
}
# Symbol not found -> failed
return 0
}
## Write error message to the code listing
# @access public
# @parm Int idx - Index where the error occurred
# @parm String info - Error message
# @return void
proc Error {idx info} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust index
set idx [getIdx $idx]
if {$idx == {}} {
puts stderr "Assembler internal failure 0 -- code listing will not be complete"
return
}
incr idx
increment_sync_map $idx 1
# Write the message
set lst [linsert $lst $idx [list {****} "ERROR: $info"]]
}
## Write warning message to the code listing
# @access public
# @parm Int idx - Index where the warning occurred
# @parm String info - Warning message
# @return void
proc Warning {idx info} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust index
set idx [getIdx $idx]
if {$idx == {}} {
puts stderr "Assembler internal failure 4 -- code listing will not be complete"
return
}
incr idx
increment_sync_map $idx 1
# Write the message
set lst [linsert $lst $idx [list {****} "WARNING: $info"]]
}
## Directive "$EJECT"
# @access public
# @parm Int idx - Source index
# @return void
proc directive_eject {idx} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust index
set idx [getIdx $idx]
if {$idx == {}} {
puts stderr "Assembler internal failure 5 -- code listing will not be complete"
return
}
incr idx 2
increment_sync_map $idx 1
# Write the message
set lst [linsert $lst $idx EJECT]
}
## Directive "DB"
# @access public
# @parm Int idx - Source index
# @parm List values - Hexadecimal values (eg. '{FA 4 5 2D C'})
# @return void
proc db {idx values} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Determinate original values
set sub_idx [getIdx $idx]
if {$sub_idx != {}} {
set new_values [lindex $lst [list $sub_idx 1]]
} else {
set new_values {}
}
# Adjust list of values
foreach val $values {
if {![string is digit -strict $val]} {
append new_values " {} {$val} "
continue
}
set val [string trimleft $val 0]
if {$val == {}} {
set val {00}
} else {
set val [format %X $val]
if {[string length $val] == 1} {
set val "0$val"
}
}
append new_values $val
}
# Set OP code for the current line
set_opcode $idx $new_values
}
## Expansion of macro instruction
# @access public
# @parm Int idx - Source index
# @parm String macro_code - Code of the macro instruction
# @return void
proc macro {idx macro_code} {
variable sync_map ;# Map of lines in code listing
variable tmp_lst ;# Tempotary LST code
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Create empty space in code listing
insert_lines $idx [llength $macro_code]
# Determinate target index
set idx [getIdx $idx]
# Initialize auxiliary code listing list
set tmp_lst {}
# Adjust Macro expansion level and Inclusion level
set IncLevel [lindex $lst [list $idx 3]]
set MacLevel [lindex $lst [list $idx 4]]
if {![regexp {^\d+$} $MacLevel]} {
puts stderr "Assembler internal failure 1 -- code listing will not be complete"
return
}
incr MacLevel
# Adjust code of macro instruction
foreach line $macro_code {
lappend tmp_lst [list {} {} {} $IncLevel $MacLevel "\t\t$line"]
}
# Set macro expansion level
lset lst [list $idx 4] $MacLevel
# Insert code of macro to the current code listing
incr idx
append tmp_lst { }
append tmp_lst [lrange $lst $idx end]
set lst [lreplace $lst $idx end]
append lst { }
append lst $tmp_lst
set tmp_lst {}
}
## Adjust current code listing to the fiven code organization
# @access public
# @parm List organization - new organization (see Preprocessor)
# @return void
proc org {organization} {
variable sync_map ;# Map of lines in code listing
variable new_sync_map ;# Tempotary Map of lines in code listing
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Reformat synchronization map
set new_sync_map {}
foreach org $organization {
# Local variables
set start [lindex $org 0] ;# Start line
set end [lindex $org 1] ;# End line
append new_sync_map { }
append new_sync_map [lrange $sync_map $start $end]
set sync_map [lreplace $sync_map $start $end]
}
if {$sync_map != {}} {
append new_sync_map { }
append new_sync_map $sync_map
}
set sync_map $new_sync_map
}
## Set instruction OP code
# @access public
# @parm Int idx - Source index
# @parm String opcode - Haxadecimal OP code
# @return void
proc set_opcode {idx opcode} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust code listing
set idx [getIdx $idx]
if {$idx == {}} {return}
if {[catch {
lset lst [list $idx 1] $opcode
}]} then {
puts stderr "Assembler internal failure 2 -- code listing will not be complete"
return
}
}
## Set instruction address
# @access public
# @parm Int idx - Source index
# @parm Int addr - Instruction address
# @return void
proc set_addr {idx addr} {
variable lst ;# Resulting LST code
variable sync_map ;# Map of lines in code listing
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust code listing
set idx [getIdx $idx]
if {$idx == {}} {return}
if {[catch {
lset lst [list $idx 0] [get_4hex $addr]
}]} then {
puts stderr "Assembler internal failure 3 -- code listing will not be complete"
return
}
}
## Directive "END"
# @access public
# @parm Int idx - Source index
# @parm Bool preserve_current_line=false - Do not remove the `$idx' line from the sync. map
# @return void
proc end_directive {idx {preserve_current_line 0}} {
variable sync_map ;# Map of lines in code listing
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Determinate target index
set lst_idx [getIdx $idx]
incr lst_idx
if {$lst_idx == {}} {return}
if {$lst_idx > ([llength $lst] - 1)} {return}
# Adjust code listing and synchronization map
set lst [lreplace $lst $lst_idx end]
if {$preserve_current_line} {
incr idx
}
if {$idx < [llength $sync_map]} {
set sync_map [lreplace $sync_map $idx end]
}
}
## Set value for symbol definition
# @access public
# @parm Int idx - Source index
# @parm Int value - Symbol value
# @return void
proc set_value {idx value} {
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Determinate target index
set idx [getIdx $idx]
if {$idx == {}} {return}
# Adjust code listing
lset lst [list $idx 2] [get_4hex $value]
}
## Set value for special symbol definition
# @access public
# @parm Int idx - Source index
# @parm Int value - Symbol value
# @return void
proc set_spec_value {idx value} {
# This procedure does nothing and that's what is should do ...
}
## Directive "INCLUDE"
# @access public
# @parm Int idx - Source index
# @parm String data - Included source code
# @return void
proc include {idx data} {
variable tmp_lst ;# Tempotary LST code
variable lst ;# Resulting LST code
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Insert empty lines for the included code
insert_lines $idx [expr {[llength $data] - 1}]
# Determinate target index
set idx [getIdx $idx]
# Adjust macro expansion level and inclusion level
set IncLevel [lindex $lst [list $idx 3]]
set MacLevel [lindex $lst [list $idx 4]]
incr IncLevel
# Adjust the given source code
set tmp_lst {}
foreach line $data {
lappend tmp_lst [list {} {} {} $IncLevel $MacLevel [lindex $line 2]]
}
# Reformat code listing
incr idx
append tmp_lst { }
append tmp_lst [lrange $lst $idx end]
incr idx -1
set lst [lreplace $lst $idx end]
append lst { }
append lst $tmp_lst
set tmp_lst {}
}
## Get last index in the synchronization map
# @return Int - The index
proc get_last_index_in_sync_map {} {
return [expr {[llength ${::CodeListing::sync_map}] - 1}]
}
## Line removed -- adjust synchronization map
# @access public
# @parm Int idx - source index
# @return void
proc delete_line {idx} {
variable sync_map ;# Map of lines in code listing
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
# Adjust synchronization map
set sync_map [lreplace $sync_map $idx $idx]
}
## Adjust synchronization map to create a space which cannot contain anything
# @access public
# @parm Int dest_idx - Target index
# @parm Int len - Number of lines
# @return void
proc insert_empty_lines {dest_idx len} {
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
variable sync_map ;# Map of lines in code listing
variable new_sync_map ;# Tempotary Map of lines in code listing
# Abort if there s nothing to insert
if {$len == 0} {return}
# Create $len empty items in sync map at index $dest_idx
set new_sync_map {}
set idx -1
foreach item $sync_map {
incr idx
lappend new_sync_map $item
if {$idx == $dest_idx} {
for {set i 0} {$i < $len} {incr i} {
lappend new_sync_map {}
}
}
}
set sync_map $new_sync_map
}
## Free reserved resources
# @access public
# @return void
proc free_resources {} {
variable lst ;# Resulting LST code
set lst {}
}
# ----------------------------------------------------------------
# INTERNAL AUXILIARY PROCEDURES
# ----------------------------------------------------------------
## Reformat internal listing to human readable text
# @access private
# @return void
proc format_listing {} {
variable header ;# Title string
variable pageNum ;# Page number
variable pageLines ;# Number of lines at the current page
variable lst ;# Resulting LST code
variable Enabled ;# Bool: LIST/NOLIST flag
# Write page header
set result $header
append result { } $pageNum "\n"
# Initialize variables
set pageLines 0
set lineNum 0
# Reformat code
foreach line $lst {
incr lineNum
# Take case of directives "LIST" and "NOLIST"
if {$line == {NOLIST}} {
set Enabled 0
incr lineNum -1
continue
} elseif {$line == {LIST}} {
set Enabled 1
incr lineNum -1
continue
}
# Skip line if listing is disabled
if {!$Enabled} {
continue
}
# Create new page if paging is enabled
if {${::Compiler::Settings::PAGING}} {
incr pageLines
if {$pageLines > ${::Compiler::Settings::PAGELENGTH}} {
incr pageNum
set pageLines 1
append result "\n\f" $header { } $pageNum "\n\n"
}
}
# Directive "$EJECT"
if {[lindex $line 0] == {EJECT}} {
incr pageNum
set pageLines 1
append result "\n\f" $header { } $pageNum "\n\n"
incr lineNum -1
# Line containing an error message
} elseif {[lindex $line 0] == {****}} {
append result "****" [lindex $line 1] "\n"
incr lineNum -1
# Normal line
} else {
# Local variables
set addr [lindex $line 0] ;# Address field
set opcode [lindex $line 1] ;# Instruction OP code
set value [lindex $line 2] ;# Value of defined constant
set IncLevel [lindex $line 3] ;# Inclusion level
set MacLevel [lindex $line 4] ;# Macro expansion level
set code [lindex $line 5] ;# Source code
# Adjust inclusion level
if {$IncLevel == 0} {
set IncLevel { }
} else {
set IncLevel "=$IncLevel"
if {[string length $IncLevel] == 2} {
append IncLevel { }
}
}
# Adjust macro expansion level
if {$MacLevel == 0} {
set MacLevel { }
} else {
set MacLevel "+$MacLevel"
if {[string length $MacLevel] == 2} {
append MacLevel { }
}
}
# Adjust line number
set line_number $lineNum
set len [string length $line_number]
if {$len < 5} {
set line_number "[string repeat { } [expr {5 - $len}]]$line_number"
}
## Create filed 0 (address + OP code // constant value)
set field0 {}
# Adjust opcode length (for continuation on the next line)
set opcode_len [string length $opcode]
if {$opcode_len > 10} {
set opcode_continue [string replace $opcode 0 9]
set opcode [string range $opcode 0 9]
}
# Only constant value
if {$value != {}} {
append field0 { } $value { }
# Address + OP code
} elseif {($opcode != {}) && ($addr != {})} {
if {$opcode_len < 10} {
append opcode [string repeat { } [expr {10 - $opcode_len}]]
}
append field0 $addr { } $opcode { }
# Empty
} else {
set field0 [string repeat { } 16]
}
# Composite final line
set line {}
append line $field0 { } $IncLevel { } $line_number
append line { } $MacLevel { } [tabs2spaces $code]
append result [string range $line 0 [expr ${::Compiler::Settings::PAGEWIDTH} - 1]] "\n"
# Continue in unfinished opcode
if {$opcode_len > 10} {
incr opcode_len -10
for {set i 0; set j 9} {$i < $opcode_len} {incr i 10; incr j 10} {
append result { } [string range $opcode_continue $i $j] "\n"
}
}
}
}
# Restore characters '{' and '}'
regsub -all {\a} $result "\{" result
regsub -all {\b} $result "\}" result
# Remove redutant white space
set lst [regsub -all -line {\s+$} $result {}]
}
## Convert tabulators to spaces
# @access private
# @parm String data - input data
# @return String - output data
proc tabs2spaces {data} {
set tmp {} ;# Auxiliary variable
while {1} {
# Search for 1st tabulator
set idx [string first "\t" $data]
# Tabulator not found -> return result
if {$idx == -1} {
return $data
# 1st char
} elseif {$idx == 0} {
regsub {\t} $data { } data
# Somewhere else
} else {
# Determinate string before tabulator
incr idx -1
set tmp [string range $data 0 $idx]
# Determinate string after tabulator
incr idx 2
set data [string range $data $idx end]
# Determinate number of spaces
set len [string length $tmp]
set len [expr {8 - ($len % 8)}]
# Recomposite source string
append tmp [string repeat { } $len]
append tmp $data
set data $tmp
}
}
}
## Create string containing error summary
# Modifies content of variables:
# - error_summary
# - errors_count
# - warnings_count
# @access private
# @return void
proc create_error_summary {} {
variable lst ;# Resulting LST code
variable error_summary ;# Error summmary string
variable errors_count ;# Number of errors
variable warnings_count ;# Number of warnings
variable header ;# Title string
variable pageNum ;# Page number
variable pageLines ;# Number of lines at the current page
# Reset error counters
set errors_count 0
set warnings_count 0
# Initialize resulting string
set error_summary {}
# Create new page
if {${::Compiler::Settings::PAGING}} {
incr pageNum
set pageLines 0
append error_summary "\n\f" $header { } $pageNum "\n\n"
}
append error_summary {ERROR SUMMARY:}
# Search code for errors and warnings
set lineNum -1
foreach line $lst {
incr lineNum
# Create new page if nessesary
if {${::Compiler::Settings::PAGING}} {
incr pageLines
if {$pageLines > ${::Compiler::Settings::PAGEWIDTH}} {
incr pageNum
set pageLines 1
append error_summary "\n\f" $header { } $pageNum "\n\n"
}
}
# Error/Warning found
if {[lindex $line 0] == {****}} {
if {[lindex $line {1 0}] == {ERROR:}} {
incr errors_count
} else {
incr warnings_count
}
# Append error/warning information
append error_summary "\n" Line { } $lineNum {, } [lindex $line 1]
}
}
}
## Create table of symbolic names
# Result is stored in variable symbol_table
# @access private
# @return void
proc create_symbol_table {} {
variable symbol_table ;# Table of symbolic names
variable header ;# Title string
variable pageNum ;# Page number
variable pageLines ;# Number of lines at the current page
# Initialize resulting string
set result {}
# Create new page
if {${::Compiler::Settings::PAGING}} {
incr pageNum
set pageLines 0
append result "\n\f" $header { } $pageNum "\n\n"
}
append result {SYMBOL TABLE:}
# Create string for paddings
set padding [string repeat { .} 18]
# Convert current table to human readable string
foreach var $symbol_table {
# Create new page if nessesary
if {${::Compiler::Settings::PAGING}} {
incr pageLines
if {$pageLines > ${::Compiler::Settings::PAGEWIDTH}} {
incr pageNum
set pageLines 1
append result "\n\f" $header { } $pageNum "\n\n"
}
}
# Local variables
set rd [lindex $var 5] ;# Bool: redefinable
set nu [lindex $var 4] ;# Bool: not used
set val [lindex $var 3] ;# Value
set name [lindex $var 0] ;# Symbolic name
## Type
# NUMB == number
# ADDR == address
# SPEC == special value
set type [lindex $var 2]
## Character
# C == code
# D == data
# B == bit
# X == external
# S == special value
set char [lindex $var 1]
# Adjust rd
if {$rd == 1} {
set rd {REDEFINABLE}
} else {
set rd {}
}
# Adjust nu
if {$nu == 1} {
set nu {NOT USED}
} else {
set nu { }
}
# Adjuts symbolic name
set len [string length $name]
incr len -1
set name [string replace $padding 0 $len $name]
# Composite final line
if {$char != {S}} {
set h {H}
} else {
set nu { }
set h [string repeat { } [expr {5 - [string length $val]}]]
}
append result "\n" $name { } $char { } $type { } $val $h { } $nu { } $rd
}
append result "\n"
# Remove all redutant white space
regsub -all -line {\s+$} $result {} symbol_table
}
## Increment values in synchronization map
# @access private
# @parm Int idx - Index where incrementation begins
# @parm Int value - Value to increment by
# @return void
proc increment_sync_map {idx value} {
variable sync_map ;# Map of lines in code listing
variable new_sync_map ;# Tempotary Map of lines in code listing
set new_sync_map {}
foreach item $sync_map {
if {$item >= $idx} {
if {$item != {}} {
incr item $value
}
}
lappend new_sync_map $item
}
set sync_map $new_sync_map
}
## Convert decimal value to four digit hexadecimal value
# @access private
# @parm Int number - number to convert
# @return String - result
proc get_4hex {number} {
# Convert value
set number [format %X $number]
# Adjust length
set len [string length $number]
if {$len < 4} {
set number "[string repeat 0 [expr {4 - $len}]]$number"
}
# Return result
return $number
}
## Translate source index to target index according to synchronization map
# @access private
# @parm Int idx - Source index
# @return Int - target index
proc getIdx {idx} {
variable sync_map ;# Map of lines in code listing
set result [lindex $sync_map $idx]
if {$result == {}} {
set result 0
}
return $result
}
## Adjust synchronization map to create empty space to insert something
# @access private
# @parm Int dest_idx - Target index
# @parm Int len - Number of lines
# @return void
proc insert_lines {dest_idx len} {
# Check if code listing is enabled
if {!${::Compiler::Settings::PRINT}} {return}
if {$len == 0} {return}
variable sync_map ;# Map of lines in code listing
variable new_sync_map ;# Tempotary Map of lines in code listing
# Adjust synchronization map
set dest_item [lindex $sync_map $dest_idx]
if {$dest_item == {}} {
set dest_item 0
}
set new_sync_map {}
set idx -1
foreach item $sync_map {
incr idx
# Taget index
if {$idx == $dest_idx} {
if {$item == {}} {
continue
}
set tmp [expr {$len + $item}]
while {$item <= $tmp} {
lappend new_sync_map $item
incr item
}
# Empty index or too low index to be changed
} elseif {$item == {} || $item < $dest_item} {
lappend new_sync_map $item
# Index somewhere in the affected area
} else {
incr item $len
lappend new_sync_map $item
}
}
set sync_map $new_sync_map
}
}
# >>> File inclusion guard
}
# <<< File inclusion guard
|