2011-03-22 00:16:49 +00:00
|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file LexA68k.cxx
|
|
|
|
** Lexer for Assembler, just for the MASM syntax
|
|
|
|
** Written by Martial Demolins AKA Folco
|
|
|
|
**/
|
|
|
|
// Copyright 2010 Martial Demolins <mdemolins(a)gmail.com>
|
|
|
|
// The License.txt file describes the conditions under which this software
|
|
|
|
// may be distributed.
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include "ILexer.h"
|
|
|
|
#include "Scintilla.h"
|
|
|
|
#include "SciLexer.h"
|
|
|
|
|
|
|
|
#include "WordList.h"
|
|
|
|
#include "LexAccessor.h"
|
|
|
|
#include "Accessor.h"
|
|
|
|
#include "StyleContext.h"
|
|
|
|
#include "CharacterSet.h"
|
|
|
|
#include "LexerModule.h"
|
|
|
|
|
|
|
|
using namespace Scintilla;
|
|
|
|
|
|
|
|
|
|
|
|
// Return values for GetOperatorType
|
|
|
|
#define NO_OPERATOR 0
|
|
|
|
#define OPERATOR_1CHAR 1
|
|
|
|
#define OPERATOR_2CHAR 2
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* IsIdentifierStart
|
|
|
|
*
|
|
|
|
* Return true if the given char is a valid identifier first char
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool IsIdentifierStart (const int ch)
|
|
|
|
{
|
|
|
|
return (isalpha(ch) || (ch == '_') || (ch == '\\'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* IsIdentifierChar
|
|
|
|
*
|
|
|
|
* Return true if the given char is a valid identifier char
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool IsIdentifierChar (const int ch)
|
|
|
|
{
|
|
|
|
return (isalnum(ch) || (ch == '_') || (ch == '@') || (ch == ':') || (ch == '.'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GetOperatorType
|
|
|
|
*
|
|
|
|
* Return:
|
|
|
|
* NO_OPERATOR if char is not an operator
|
|
|
|
* OPERATOR_1CHAR if the operator is one char long
|
|
|
|
* OPERATOR_2CHAR if the operator is two chars long
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline int GetOperatorType (const int ch1, const int ch2)
|
|
|
|
{
|
|
|
|
int OpType = NO_OPERATOR;
|
|
|
|
|
|
|
|
if ((ch1 == '+') || (ch1 == '-') || (ch1 == '*') || (ch1 == '/') || (ch1 == '#') ||
|
|
|
|
(ch1 == '(') || (ch1 == ')') || (ch1 == '~') || (ch1 == '&') || (ch1 == '|') || (ch1 == ','))
|
|
|
|
OpType = OPERATOR_1CHAR;
|
|
|
|
|
|
|
|
else if ((ch1 == ch2) && (ch1 == '<' || ch1 == '>'))
|
|
|
|
OpType = OPERATOR_2CHAR;
|
|
|
|
|
|
|
|
return OpType;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* IsBin
|
|
|
|
*
|
|
|
|
* Return true if the given char is 0 or 1
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool IsBin (const int ch)
|
|
|
|
{
|
|
|
|
return (ch == '0') || (ch == '1');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* IsDoxygenChar
|
|
|
|
*
|
|
|
|
* Return true if the char may be part of a Doxygen keyword
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool IsDoxygenChar (const int ch)
|
|
|
|
{
|
|
|
|
return isalpha(ch) || (ch == '$') || (ch == '[') || (ch == ']') || (ch == '{') || (ch == '}');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ColouriseA68kDoc
|
|
|
|
*
|
|
|
|
* Main function, which colourises a 68k source
|
|
|
|
*/
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
static void ColouriseA68kDoc (Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], Accessor &styler)
|
2011-03-22 00:16:49 +00:00
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
// Used to buffer a string, to be able to compare it using built-in functions
|
|
|
|
char Buffer[100];
|
|
|
|
|
|
|
|
|
|
|
|
// Used to know the length of an operator
|
|
|
|
int OpType;
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
|
|
|
|
// Get references to keywords lists
|
|
|
|
WordList &cpuInstruction = *keywordlists[0];
|
|
|
|
WordList ®isters = *keywordlists[1];
|
|
|
|
WordList &directive = *keywordlists[2];
|
|
|
|
WordList &extInstruction = *keywordlists[3];
|
2019-05-04 18:14:48 +00:00
|
|
|
WordList &alert = *keywordlists[4];
|
2011-03-22 00:16:49 +00:00
|
|
|
WordList &doxygenKeyword = *keywordlists[5];
|
|
|
|
|
|
|
|
|
|
|
|
// Instanciate a context for our source
|
|
|
|
StyleContext sc(startPos, length, initStyle, styler);
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
*
|
2019-05-04 18:14:48 +00:00
|
|
|
* Parse the source
|
2011-03-22 00:16:49 +00:00
|
|
|
*
|
|
|
|
************************************************************/
|
|
|
|
|
|
|
|
for ( ; sc.More(); sc.Forward())
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* A style always terminates at the end of a line, even for
|
|
|
|
* comments (no multi-lines comments)
|
|
|
|
*
|
|
|
|
************************************************************/
|
|
|
|
if (sc.atLineStart) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.SetState(SCE_A68K_DEFAULT);
|
2019-05-04 18:14:48 +00:00
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
*
|
2019-05-04 18:14:48 +00:00
|
|
|
* If we are not in "default style", check if the style continues
|
|
|
|
* In this case, we just have to loop
|
2011-03-22 00:16:49 +00:00
|
|
|
*
|
|
|
|
************************************************************/
|
|
|
|
|
|
|
|
if (sc.state != SCE_A68K_DEFAULT)
|
|
|
|
{
|
2019-05-04 18:14:48 +00:00
|
|
|
if ( ((sc.state == SCE_A68K_NUMBER_DEC) && isdigit(sc.ch)) // Decimal number
|
2011-03-22 00:16:49 +00:00
|
|
|
|| ((sc.state == SCE_A68K_NUMBER_BIN) && IsBin(sc.ch)) // Binary number
|
|
|
|
|| ((sc.state == SCE_A68K_NUMBER_HEX) && isxdigit(sc.ch)) // Hexa number
|
2019-05-04 18:14:48 +00:00
|
|
|
|| ((sc.state == SCE_A68K_MACRO_ARG) && isdigit(sc.ch)) // Macro argument
|
2011-03-22 00:16:49 +00:00
|
|
|
|| ((sc.state == SCE_A68K_STRING1) && (sc.ch != '\'')) // String single-quoted
|
|
|
|
|| ((sc.state == SCE_A68K_STRING2) && (sc.ch != '\"')) // String double-quoted
|
2019-05-04 18:14:48 +00:00
|
|
|
|| ((sc.state == SCE_A68K_MACRO_DECLARATION) && IsIdentifierChar(sc.ch)) // Macro declaration (or global label, we don't know at this point)
|
|
|
|
|| ((sc.state == SCE_A68K_IDENTIFIER) && IsIdentifierChar(sc.ch)) // Identifier
|
|
|
|
|| ((sc.state == SCE_A68K_LABEL) && IsIdentifierChar(sc.ch)) // Label (local)
|
|
|
|
|| ((sc.state == SCE_A68K_COMMENT_DOXYGEN) && IsDoxygenChar(sc.ch)) // Doxygen keyword
|
|
|
|
|| ((sc.state == SCE_A68K_COMMENT_SPECIAL) && isalpha(sc.ch)) // Alert
|
|
|
|
|| ((sc.state == SCE_A68K_COMMENT) && !isalpha(sc.ch) && (sc.ch != '\\'))) // Normal comment
|
2011-03-22 00:16:49 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* Check if current state terminates
|
|
|
|
*
|
|
|
|
************************************************************/
|
2011-03-22 00:16:49 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
// Strings: include terminal ' or " in the current string by skipping it
|
|
|
|
if ((sc.state == SCE_A68K_STRING1) || (sc.state == SCE_A68K_STRING2)) {
|
|
|
|
sc.Forward();
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
// If a macro declaration was terminated with ':', it was a label
|
|
|
|
else if ((sc.state == SCE_A68K_MACRO_DECLARATION) && (sc.chPrev == ':')) {
|
|
|
|
sc.ChangeState(SCE_A68K_LABEL);
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
|
|
|
|
// If it wasn't a Doxygen keyword, change it to normal comment
|
|
|
|
else if (sc.state == SCE_A68K_COMMENT_DOXYGEN) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.GetCurrent(Buffer, sizeof(Buffer));
|
2019-05-04 18:14:48 +00:00
|
|
|
if (!doxygenKeyword.InList(Buffer)) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.ChangeState(SCE_A68K_COMMENT);
|
|
|
|
}
|
|
|
|
sc.SetState(SCE_A68K_COMMENT);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
|
|
|
|
// If it wasn't an Alert, change it to normal comment
|
|
|
|
else if (sc.state == SCE_A68K_COMMENT_SPECIAL) {
|
|
|
|
sc.GetCurrent(Buffer, sizeof(Buffer));
|
|
|
|
if (!alert.InList(Buffer)) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.ChangeState(SCE_A68K_COMMENT);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
// Reset style to normal comment, or to Doxygen keyword if it begins with '\'
|
|
|
|
if (sc.ch == '\\') {
|
|
|
|
sc.SetState(SCE_A68K_COMMENT_DOXYGEN);
|
|
|
|
}
|
|
|
|
else {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.SetState(SCE_A68K_COMMENT);
|
2019-05-04 18:14:48 +00:00
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
|
|
|
|
// If we are in a comment, it's a Doxygen keyword or an Alert
|
|
|
|
else if (sc.state == SCE_A68K_COMMENT) {
|
|
|
|
if (sc.ch == '\\') {
|
|
|
|
sc.SetState(SCE_A68K_COMMENT_DOXYGEN);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sc.SetState(SCE_A68K_COMMENT_SPECIAL);
|
|
|
|
}
|
|
|
|
continue;
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
// Check if we are at the end of an identifier
|
|
|
|
// In this case, colourise it if was a keyword.
|
2019-05-04 18:14:48 +00:00
|
|
|
else if ((sc.state == SCE_A68K_IDENTIFIER) && !IsIdentifierChar(sc.ch)) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.GetCurrentLowered(Buffer, sizeof(Buffer)); // Buffer the string of the current context
|
|
|
|
if (cpuInstruction.InList(Buffer)) { // And check if it belongs to a keyword list
|
|
|
|
sc.ChangeState(SCE_A68K_CPUINSTRUCTION);
|
|
|
|
}
|
|
|
|
else if (extInstruction.InList(Buffer)) {
|
|
|
|
sc.ChangeState(SCE_A68K_EXTINSTRUCTION);
|
|
|
|
}
|
|
|
|
else if (registers.InList(Buffer)) {
|
|
|
|
sc.ChangeState(SCE_A68K_REGISTER);
|
|
|
|
}
|
|
|
|
else if (directive.InList(Buffer)) {
|
|
|
|
sc.ChangeState(SCE_A68K_DIRECTIVE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// All special contexts are now handled.Come back to default style
|
|
|
|
sc.SetState(SCE_A68K_DEFAULT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************
|
|
|
|
*
|
|
|
|
* Check if we must enter a new state
|
|
|
|
*
|
|
|
|
************************************************************/
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
// Something which begins at the beginning of a line, and with
|
|
|
|
// - '\' + an identifier start char, or
|
|
|
|
// - '\\@' + an identifier start char
|
|
|
|
// is a local label (second case is used for macro local labels). We set it already as a label, it can't be a macro/equ declaration
|
|
|
|
if (sc.atLineStart && (sc.ch < 0x80) && IsIdentifierStart(sc.chNext) && (sc.ch == '\\')) {
|
|
|
|
sc.SetState(SCE_A68K_LABEL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc.atLineStart && (sc.ch < 0x80) && (sc.ch == '\\') && (sc.chNext == '\\')) {
|
|
|
|
sc.Forward(2);
|
|
|
|
if ((sc.ch == '@') && IsIdentifierStart(sc.chNext)) {
|
|
|
|
sc.ChangeState(SCE_A68K_LABEL);
|
|
|
|
sc.SetState(SCE_A68K_LABEL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
// Label and macro identifiers start at the beginning of a line
|
2019-05-04 18:14:48 +00:00
|
|
|
// We set both as a macro id, but if it wasn't one (':' at the end),
|
|
|
|
// it will be changed as a label.
|
2011-03-22 00:16:49 +00:00
|
|
|
if (sc.atLineStart && (sc.ch < 0x80) && IsIdentifierStart(sc.ch)) {
|
2019-05-04 18:14:48 +00:00
|
|
|
sc.SetState(SCE_A68K_MACRO_DECLARATION);
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == ';')) { // Default: alert in a comment. If it doesn't match
|
|
|
|
sc.SetState(SCE_A68K_COMMENT); // with an alert, it will be toggle to a normal comment
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && isdigit(sc.ch)) { // Decimal numbers haven't prefix
|
|
|
|
sc.SetState(SCE_A68K_NUMBER_DEC);
|
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == '%')) { // Binary numbers are prefixed with '%'
|
|
|
|
sc.SetState(SCE_A68K_NUMBER_BIN);
|
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == '$')) { // Hexadecimal numbers are prefixed with '$'
|
|
|
|
sc.SetState(SCE_A68K_NUMBER_HEX);
|
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == '\'')) { // String (single-quoted)
|
|
|
|
sc.SetState(SCE_A68K_STRING1);
|
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == '\"')) { // String (double-quoted)
|
|
|
|
sc.SetState(SCE_A68K_STRING2);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
else if ((sc.ch < 0x80) && (sc.ch == '\\') && (isdigit(sc.chNext))) { // Replacement symbols in macro are prefixed with '\'
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.SetState(SCE_A68K_MACRO_ARG);
|
|
|
|
}
|
|
|
|
else if ((sc.ch < 0x80) && IsIdentifierStart(sc.ch)) { // An identifier: constant, label, etc...
|
|
|
|
sc.SetState(SCE_A68K_IDENTIFIER);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (sc.ch < 0x80) {
|
|
|
|
OpType = GetOperatorType(sc.ch, sc.chNext); // Check if current char is an operator
|
|
|
|
if (OpType != NO_OPERATOR) {
|
|
|
|
sc.SetState(SCE_A68K_OPERATOR);
|
|
|
|
if (OpType == OPERATOR_2CHAR) { // Check if the operator is 2 bytes long
|
|
|
|
sc.ForwardSetState(SCE_A68K_OPERATOR); // (>> or <<)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // End of for()
|
|
|
|
sc.Complete();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Names of the keyword lists
|
|
|
|
|
|
|
|
static const char * const a68kWordListDesc[] =
|
|
|
|
{
|
|
|
|
"CPU instructions",
|
|
|
|
"Registers",
|
|
|
|
"Directives",
|
|
|
|
"Extended instructions",
|
|
|
|
"Comment special words",
|
|
|
|
"Doxygen keywords",
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
LexerModule lmA68k(SCLEX_A68K, ColouriseA68kDoc, "a68k", 0, a68kWordListDesc);
|