A bit more refactoring; no change in functionality.

git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@50 4df02467-bbd4-4a76-a152-e7ce94205b78
This commit is contained in:
marcobaye 2014-12-04 23:58:00 +00:00
parent e042ec8602
commit 913d8cb005
5 changed files with 190 additions and 155 deletions

View File

@ -17,7 +17,7 @@
#define RELEASE "0.95.4" // update before release (FIXME) #define RELEASE "0.95.4" // update before release (FIXME)
#define CODENAME "Fenchurch" // update before release #define CODENAME "Fenchurch" // update before release
#define CHANGE_DATE "4 Dec" // update before release #define CHANGE_DATE "5 Dec" // update before release
#define CHANGE_YEAR "2014" // update before release #define CHANGE_YEAR "2014" // update before release
//#define HOME_PAGE "http://home.pages.de/~mac_bacon/smorbrod/acme/" // FIXME //#define HOME_PAGE "http://home.pages.de/~mac_bacon/smorbrod/acme/" // FIXME
#define HOME_PAGE "http://sourceforge.net/p/acme-crossass/" // FIXME #define HOME_PAGE "http://sourceforge.net/p/acme-crossass/" // FIXME
@ -246,7 +246,7 @@ static int perform_pass(void)
// if start address was given on command line, use it: // if start address was given on command line, use it:
if (start_address != ILLEGAL_START_ADDRESS) if (start_address != ILLEGAL_START_ADDRESS)
vcpu_set_pc(start_address, 0); vcpu_set_pc(start_address, 0);
Encoding_passinit(); // set default encoding encoding_passinit(); // set default encoding
Section_passinit(); // set initial zone (untitled) Section_passinit(); // set initial zone (untitled)
// init variables // init variables
pass_undefined_count = 0; // no "NeedValue" errors yet pass_undefined_count = 0; // no "NeedValue" errors yet

View File

@ -350,7 +350,7 @@ static void parse_quoted_character(char closing_quote)
} }
// parse character // parse character
value = (intval_t) Encoding_encode_char(GotByte); value = (intval_t) encoding_encode_char(GotByte);
// Read closing quote (hopefully) // Read closing quote (hopefully)
if (GetQuotedByte() == closing_quote) if (GetQuotedByte() == closing_quote)
GetByte(); // if length == 1, proceed with next byte GetByte(); // if length == 1, proceed with next byte

View File

@ -16,43 +16,101 @@
#include "tree.h" #include "tree.h"
// Encoder function type definition // struct definition
typedef char (*encoder_t)(char) ; struct encoder {
char (*fn)(char);
// maybe add table pointer?
};
// Constants // constants
static const char s_pet[] = "pet"; static const char s_pet[] = "pet";
static const char s_raw[] = "raw"; static const char s_raw[] = "raw";
static const char s_scr[] = "scr"; static const char s_scr[] = "scr";
// Variables // variables
static char outermost_table[256]; // space for encoding table... static char outermost_table[256]; // space for encoding table...
static char *loaded_table = outermost_table; // ...loaded from file static char *loaded_table = outermost_table; // ...loaded from file
// predefined stuff static struct encoder *current_encoder; // gets set before each pass
static struct ronode *encoder_tree = NULL; // tree to hold encoders
// Functions // encoder functions:
// convert character using current encoding
// Conversion function pointer. No init needed: gets set before each pass.
char (*Encoding_encode_char)(char);
// Insert string(s) // convert raw to raw (do not convert at all)
static enum eos encode_string(encoder_t inner_encoder, char xor) static char encoderfn_raw(char byte)
{ {
encoder_t outer_encoder = Encoding_encode_char; // buffer encoder return byte;
}
// convert raw to petscii
static char encoderfn_pet(char byte)
{
if ((byte >= 'A') && (byte <= 'Z'))
return (char) (byte | 0x80); // FIXME - check why SAS-C
if ((byte >= 'a') && (byte <= 'z')) // wants these casts.
return (char) (byte - 32); // There are more below.
return byte;
}
// convert raw to C64 screencode
static char encoderfn_scr(char byte)
{
if ((byte >= 'a') && (byte <= 'z'))
return (char) (byte - 96); // shift uppercase down
if ((byte >= '[') && (byte <= '_'))
return (char) (byte - 64); // shift [\]^_ down
if (byte == '`')
return 64; // shift ` down
if (byte == '@')
return 0; // shift @ down
return byte;
}
// convert raw to whatever is defined in table
static char encoderfn_file(char byte)
{
return loaded_table[(unsigned char) byte];
}
// predefined encoder structs:
static struct encoder encoder_raw = {
encoderfn_raw
};
static struct encoder encoder_pet = {
encoderfn_pet
};
static struct encoder encoder_scr = {
encoderfn_scr
};
static struct encoder encoder_file = {
encoderfn_file
};
// functions
// convert character using current encoding (exported for use by alu.c)
char encoding_encode_char(char byte)
{
return current_encoder->fn(byte);
}
// insert string(s)
static enum eos encode_string(struct encoder *inner_encoder, char xor)
{
struct encoder *outer_encoder = current_encoder; // buffer encoder
// make given encoder the current one (for ALU-parsed values) // make given encoder the current one (for ALU-parsed values)
Encoding_encode_char = inner_encoder; current_encoder = inner_encoder;
do { do {
if (GotByte == '"') { if (GotByte == '"') {
// read initial character // read initial character
GetQuotedByte(); GetQuotedByte();
// send characters until closing quote is reached // send characters until closing quote is reached
while (GotByte && (GotByte != '"')) { while (GotByte && (GotByte != '"')) {
output_8(xor ^ Encoding_encode_char(GotByte)); output_8(xor ^ current_encoder->fn(GotByte));
GetQuotedByte(); GetQuotedByte();
} }
if (GotByte == CHAR_EOS) if (GotByte == CHAR_EOS)
@ -67,99 +125,18 @@ static enum eos encode_string(encoder_t inner_encoder, char xor)
output_8(ALU_any_int()); output_8(ALU_any_int());
} }
} while (Input_accept_comma()); } while (Input_accept_comma());
Encoding_encode_char = outer_encoder; // reactivate buffered encoder current_encoder = outer_encoder; // reactivate buffered encoder
return ENSURE_EOS; return ENSURE_EOS;
} }
// Insert text string (default format)
static enum eos PO_text(void)
{
return encode_string(Encoding_encode_char, 0);
}
// convert raw to raw (do not convert at all)
static char encoder_raw(char byte)
{
return byte;
}
// Insert raw string
static enum eos PO_raw(void)
{
return encode_string(encoder_raw, 0);
}
// convert raw to petscii
static char encoder_pet(char byte)
{
if ((byte >= 'A') && (byte <= 'Z'))
return (char) (byte | 0x80); // FIXME - check why SAS-C
if ((byte >= 'a') && (byte <= 'z')) // wants these casts.
return (char) (byte - 32); // There are more below.
return byte;
}
// Insert PetSCII string
static enum eos PO_pet(void)
{
return encode_string(encoder_pet, 0);
}
// convert raw to C64 screencode
static char encoder_scr(char byte)
{
if ((byte >= 'a') && (byte <= 'z'))
return (char) (byte - 96); // shift uppercase down
if ((byte >= '[') && (byte <= '_'))
return (char) (byte - 64); // shift [\]^_ down
if (byte == '`')
return 64; // shift ` down
if (byte == '@')
return 0; // shift @ down
return byte;
}
// Insert screencode string
static enum eos PO_scr(void)
{
return encode_string(encoder_scr, 0);
}
// Insert screencode string, XOR'd
static enum eos PO_scrxor(void)
{
intval_t num = ALU_any_int();
if (Input_accept_comma())
return encode_string(encoder_scr, num);
Throw_error(exception_syntax);
return SKIP_REMAINDER;
}
// "!cbm" pseudo opcode (now obsolete)
static enum eos PO_cbm(void)
{
Throw_error("\"!cbm\" is obsolete; use \"!ct pet\" instead.");
return ENSURE_EOS;
}
//
static char encoder_file(char byte)
{
return loaded_table[(unsigned char) byte];
}
// read encoding table from file // read encoding table from file
static enum eos user_defined_encoding(void) static enum eos user_defined_encoding(void)
{ {
FILE *fd; FILE *fd;
char local_table[256], char local_table[256],
*buffered_table = loaded_table; *buffered_table = loaded_table;
encoder_t buffered_encoder = Encoding_encode_char; struct encoder *buffered_encoder = current_encoder;
// if file name is missing, don't bother continuing
if (Input_read_filename(TRUE))
return SKIP_REMAINDER;
fd = fopen(GLOBALDYNABUF_CURRENT, FILE_READBINARY); fd = fopen(GLOBALDYNABUF_CURRENT, FILE_READBINARY);
if (fd) { if (fd) {
if (fread(local_table, sizeof(char), 256, fd) != 256) if (fread(local_table, sizeof(char), 256, fd) != 256)
@ -168,88 +145,146 @@ static enum eos user_defined_encoding(void)
} else { } else {
Throw_error(exception_cannot_open_input_file); Throw_error(exception_cannot_open_input_file);
} }
Encoding_encode_char = encoder_file; // activate new encoding current_encoder = &encoder_file; // activate new encoding
loaded_table = local_table; // activate local table loaded_table = local_table; // activate local table
// If there's a block, parse that and then restore old values // If there's a block, parse that and then restore old values
if (Parse_optional_block()) if (Parse_optional_block()) {
Encoding_encode_char = buffered_encoder; current_encoder = buffered_encoder;
else } else {
// if there's *no* block, the table must be used from now on. // if there's *no* block, the table must be used from now on.
// copy the local table to the "outer" table // copy the local table to the "outer" table
memcpy(buffered_table, local_table, 256); memcpy(buffered_table, local_table, 256);
}
// re-activate "outer" table (it might have been changed by memcpy()) // re-activate "outer" table (it might have been changed by memcpy())
loaded_table = buffered_table; loaded_table = buffered_table;
return ENSURE_EOS; return ENSURE_EOS;
} }
// keywords for "!convtab" pseudo opcode
static struct ronode *encoder_tree = NULL; // tree to hold encoders
static struct ronode encoder_list[] = {
//no! PREDEFNODE("file", &encoder_file), "!ct file" is not needed; just use {} after initial loading of table!
PREDEFNODE(s_pet, &encoder_pet),
PREDEFNODE(s_raw, &encoder_raw),
PREDEFLAST(s_scr, &encoder_scr),
// ^^^^ this marks the last element
};
// use one of the pre-defined encodings (raw, pet, scr) // use one of the pre-defined encodings (raw, pet, scr)
static enum eos predefined_encoding(void) static enum eos predefined_encoding(void)
{ {
void *node_body; void *node_body;
char local_table[256], char local_table[256],
*buffered_table = loaded_table; *buffered_table = loaded_table;
encoder_t buffered_encoder = Encoding_encode_char; struct encoder *buffered_encoder = current_encoder;
// use one of the pre-defined encodings // use one of the pre-defined encodings
if (Input_read_and_lower_keyword()) { if (Input_read_and_lower_keyword()) {
// search for tree item // make sure tree is initialised
if (Tree_easy_scan(encoder_tree, &node_body, GlobalDynaBuf)) if (encoder_tree == NULL)
Encoding_encode_char = (encoder_t) node_body; // activate new encoder Tree_add_table(&encoder_tree, encoder_list);
else // perform lookup
if (Tree_easy_scan(encoder_tree, &node_body, GlobalDynaBuf)) {
current_encoder = (struct encoder *) node_body; // activate new encoder
} else {
Throw_error("Unknown encoding."); Throw_error("Unknown encoding.");
}
} }
loaded_table = local_table; // activate local table loaded_table = local_table; // activate local table
// If there's a block, parse that and then restore old values // If there's a block, parse that and then restore old values
if (Parse_optional_block()) if (Parse_optional_block())
Encoding_encode_char = buffered_encoder; current_encoder = buffered_encoder;
// re-activate "outer" table // re-activate "outer" table
loaded_table = buffered_table; loaded_table = buffered_table;
return ENSURE_EOS; return ENSURE_EOS;
} }
// Set current encoding ("!convtab" pseudo opcode)
static enum eos PO_convtab(void) // exported functions
// set "raw" as default encoding
void encoding_passinit(void)
{ {
if ((GotByte == '<') || (GotByte == '"')) current_encoder = &encoder_raw;
}
// FIXME - move this to pseudoopcodes.c:
// insert text string (default format)
static enum eos po_text(void)
{
return encode_string(current_encoder, 0);
}
// insert raw string
static enum eos po_raw(void)
{
return encode_string(&encoder_raw, 0);
}
// insert PetSCII string
static enum eos po_pet(void)
{
return encode_string(&encoder_pet, 0);
}
// insert screencode string
static enum eos po_scr(void)
{
return encode_string(&encoder_scr, 0);
}
// insert screencode string, XOR'd
static enum eos po_scrxor(void)
{
intval_t num = ALU_any_int();
if (Input_accept_comma() == FALSE) {
Throw_error(exception_syntax);
return SKIP_REMAINDER;
}
return encode_string(&encoder_scr, num);
}
// "!cbm" pseudo opcode (now obsolete)
static enum eos po_cbm(void)
{
Throw_error("\"!cbm\" is obsolete; use \"!ct pet\" instead.");
return ENSURE_EOS;
}
// Set current encoding ("!convtab" pseudo opcode)
static enum eos po_convtab(void)
{
if ((GotByte == '<') || (GotByte == '"')) {
// if file name is missing, don't bother continuing
if (Input_read_filename(TRUE))
return SKIP_REMAINDER;
return user_defined_encoding(); return user_defined_encoding();
else } else {
return predefined_encoding(); return predefined_encoding();
}
} }
// pseudo opcode table // pseudo opcode table
static struct ronode pseudo_opcodes[] = { static struct ronode pseudo_opcodes[] = {
PREDEFNODE(s_cbm, PO_cbm), PREDEFNODE(s_cbm, po_cbm),
PREDEFNODE("ct", PO_convtab), PREDEFNODE("ct", po_convtab),
PREDEFNODE("convtab", PO_convtab), PREDEFNODE("convtab", po_convtab),
PREDEFNODE(s_pet, PO_pet), PREDEFNODE(s_pet, po_pet),
PREDEFNODE(s_raw, PO_raw), PREDEFNODE(s_raw, po_raw),
PREDEFNODE(s_scr, PO_scr), PREDEFNODE(s_scr, po_scr),
PREDEFNODE(s_scrxor, PO_scrxor), PREDEFNODE(s_scrxor, po_scrxor),
PREDEFNODE("text", PO_text), PREDEFNODE("text", po_text),
PREDEFLAST("tx", PO_text), PREDEFLAST("tx", po_text),
// ^^^^ this marks the last element // ^^^^ this marks the last element
}; };
// keywords for "!convtab" pseudo opcode // register pseudo opcodes
static struct ronode encoders[] = {
PREDEFNODE(s_pet, encoder_pet),
PREDEFNODE(s_raw, encoder_raw),
PREDEFLAST(s_scr, encoder_scr),
// ^^^^ this marks the last element
};
// Exported functions
// register pseudo opcodes and build keyword tree for encoders
void Encoding_init(void) void Encoding_init(void)
{ {
Tree_add_table(&encoder_tree, encoders);
Tree_add_table(&pseudo_opcode_tree, pseudo_opcodes); Tree_add_table(&pseudo_opcode_tree, pseudo_opcodes);
} }
// Set "raw" as default encoding
void Encoding_passinit(void)
{
Encoding_encode_char = encoder_raw;
}

View File

@ -1,5 +1,5 @@
// ACME - a crossassembler for producing 6502/65c02/65816 code. // ACME - a crossassembler for producing 6502/65c02/65816 code.
// Copyright (C) 1998-2009 Marco Baye // Copyright (C) 1998-2014 Marco Baye
// Have a look at "acme.c" for further info // Have a look at "acme.c" for further info
// //
// Character encoding stuff // Character encoding stuff
@ -7,14 +7,14 @@
#define encoding_H #define encoding_H
// Prototypes // prototypes
// register pseudo opcodes and build keyword tree for encoders // register pseudo opcodes (FIXME - remove!)
extern void Encoding_init(void); extern void Encoding_init(void);
// convert character using current encoding // convert character using current encoding
extern char (*Encoding_encode_char)(char); extern char encoding_encode_char(char);
// Set "raw" as default encoding // set "raw" as default encoding
extern void Encoding_passinit(void); extern void encoding_passinit(void);
#endif #endif

View File

@ -59,8 +59,6 @@ static struct output *out = &default_output;
struct vcpu CPU_state; // current CPU state struct vcpu CPU_state; // current CPU state
// FIXME - move file format stuff to some other .c file! // FIXME - move file format stuff to some other .c file!
// predefined stuff
static struct ronode *file_format_tree = NULL; // tree to hold output formats
// possible file formats // possible file formats
enum output_format { enum output_format {
OUTPUT_FORMAT_UNSPECIFIED, // default (uses "plain" actually) OUTPUT_FORMAT_UNSPECIFIED, // default (uses "plain" actually)
@ -68,7 +66,9 @@ enum output_format {
OUTPUT_FORMAT_CBM, // load address, code (default for "!to" pseudo opcode) OUTPUT_FORMAT_CBM, // load address, code (default for "!to" pseudo opcode)
OUTPUT_FORMAT_PLAIN // code only OUTPUT_FORMAT_PLAIN // code only
}; };
static struct ronode file_formats[] = { // predefined stuff
static struct ronode *file_format_tree = NULL; // tree to hold output formats
static struct ronode file_format_list[] = {
PREDEFNODE("apple", OUTPUT_FORMAT_APPLE), PREDEFNODE("apple", OUTPUT_FORMAT_APPLE),
PREDEFNODE(s_cbm, OUTPUT_FORMAT_CBM), PREDEFNODE(s_cbm, OUTPUT_FORMAT_CBM),
// PREDEFNODE("o65", OUTPUT_FORMAT_O65), // PREDEFNODE("o65", OUTPUT_FORMAT_O65),
@ -269,7 +269,7 @@ int output_set_output_format(void)
// make sure tree is initialised // make sure tree is initialised
if (file_format_tree == NULL) if (file_format_tree == NULL)
Tree_add_table(&file_format_tree, file_formats); Tree_add_table(&file_format_tree, file_format_list);
// perform lookup // perform lookup
if (!Tree_easy_scan(file_format_tree, &node_body, GlobalDynaBuf)) if (!Tree_easy_scan(file_format_tree, &node_body, GlobalDynaBuf))
return 1; return 1;