mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
502 lines
14 KiB
ObjectPascal
502 lines
14 KiB
ObjectPascal
{-------------------------------------------------------------------------------
|
|
The contents of this file are subject to the Mozilla Public License
|
|
Version 1.1 (the "License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
|
|
the specific language governing rights and limitations under the License.
|
|
|
|
The Original Code is: SynHighlighterHC11.pas, released 2000-04-21.
|
|
The Original Code is based on the CIHC11Syn.pas file from the
|
|
mwEdit component suite by Martin Waldenburg and other developers, the Initial
|
|
Author of this file is Nils Springob.
|
|
Unicode translation by Maël Hörz.
|
|
All Rights Reserved.
|
|
|
|
Contributors to the SynEdit and mwEdit projects are listed in the
|
|
Contributors.txt file.
|
|
|
|
Alternatively, the contents of this file may be used under the terms of the
|
|
GNU General Public License Version 2 or later (the "GPL"), in which case
|
|
the provisions of the GPL are applicable instead of those above.
|
|
If you wish to allow use of your version of this file only under the terms
|
|
of the GPL and not to allow others to use your version of this file
|
|
under the MPL, indicate your decision by deleting the provisions above and
|
|
replace them with the notice and other provisions required by the GPL.
|
|
If you do not delete the provisions above, a recipient may use your version
|
|
of this file under either the MPL or the GPL.
|
|
|
|
$Id: SynHighlighterHC11.pas,v 1.13.2.5 2008/09/14 16:25:00 maelh Exp $
|
|
|
|
You may retrieve the latest version of this file at the SynEdit home page,
|
|
located at http://SynEdit.SourceForge.net
|
|
|
|
Known Issues:
|
|
-------------------------------------------------------------------------------}
|
|
{
|
|
@abstract(Provides a 68HC11 Assembler Language syntax highlighter for SynEdit)
|
|
@author(Nils Springob <delphi.nils@crazy-idea.de>, converted to SynEdit by Bruno Mikkelsen <btm@scientist.com>)
|
|
@created(January 2000, converted to SynEdit April 21, 2000)
|
|
@lastmod(2000-06-23)
|
|
The SynHighlighterHC11 unit provides SynEdit with a 68HC11 Assembler (.asm) highlighter.
|
|
The highlighter supports all 68HC11 op codes.
|
|
Thanks to Martin Waldenburg, David Muir, Hideo Koiso and Nick Hoddinott.
|
|
}
|
|
|
|
unit SynHighlighterHC11;
|
|
|
|
{$I SynEdit.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Graphics,
|
|
SynEditHighlighter,
|
|
SynEditTypes,
|
|
SynHighlighterHashEntries,
|
|
SynUnicode,
|
|
SysUtils,
|
|
Classes;
|
|
|
|
type
|
|
TtkTokenKind = (tkComment, tkDirective, tkIdentifier, tkKey, tkNull, tkNumber,
|
|
tkSpace, tkString, tkSymbol, tkUnknown);
|
|
|
|
TkwKeyWordType = (kwNone, kwOperand, kwOperandOver, kwNoOperand);
|
|
|
|
PHashListEntry = ^THashListEntry;
|
|
THashListEntry = record
|
|
Next: PHashListEntry;
|
|
Token: UnicodeString;
|
|
Kind: TtkTokenKind;
|
|
Op: Boolean;
|
|
end;
|
|
|
|
TSynHC11Syn = class(TSynCustomHighLighter)
|
|
private
|
|
FTokenID: TtkTokenKind;
|
|
FKeyWordType: TkwKeyWordType;
|
|
FCommentAttri: TSynHighlighterAttributes;
|
|
FDirecAttri: TSynHighlighterAttributes;
|
|
FIdentifierAttri: TSynHighlighterAttributes;
|
|
FInvalidAttri: TSynHighlighterAttributes;
|
|
FKeyAttri: TSynHighlighterAttributes;
|
|
FNumberAttri: TSynHighlighterAttributes;
|
|
FSpaceAttri: TSynHighlighterAttributes;
|
|
FStringAttri: TSynHighlighterAttributes;
|
|
FSymbolAttri: TSynHighlighterAttributes;
|
|
FKeywords: TSynHashEntryList;
|
|
procedure DoAddKeyword(AKeyword: UnicodeString; AKind: Integer);
|
|
function HashKey(Str: PWideChar): Integer;
|
|
function IdentKind(MayBe: PWideChar): TtkTokenKind;
|
|
procedure SymAsciiCharProc;
|
|
procedure SymbolProc;
|
|
procedure SymDollarProc;
|
|
procedure SymCRProc;
|
|
procedure SymIdentProc;
|
|
procedure SymLFProc;
|
|
procedure SymPercentProc;
|
|
procedure SymNullProc;
|
|
procedure SymNumberProc;
|
|
procedure SymSpaceProc;
|
|
procedure SymStarProc;
|
|
procedure SymStringProc;
|
|
procedure SymUnknownProc;
|
|
protected
|
|
function GetSampleSource: UnicodeString; override;
|
|
function IsFilterStored: Boolean; override;
|
|
public
|
|
class function GetLanguageName: string; override;
|
|
class function GetFriendlyLanguageName: UnicodeString; override;
|
|
public
|
|
constructor Create(AOwner: TComponent); override;
|
|
destructor Destroy; override;
|
|
function GetDefaultAttribute(Index: Integer): TSynHighlighterAttributes;
|
|
override;
|
|
function GetEol: Boolean; override;
|
|
function GetTokenID: TtkTokenKind;
|
|
function GetTokenAttribute: TSynHighlighterAttributes; override;
|
|
function GetTokenKind: Integer; override;
|
|
procedure Next; override;
|
|
published
|
|
property CommentAttri: TSynHighlighterAttributes read FCommentAttri
|
|
write FCommentAttri;
|
|
property DirecAttri: TSynHighlighterAttributes read FDirecAttri
|
|
write FDirecAttri;
|
|
property IdentifierAttri: TSynHighlighterAttributes read FIdentifierAttri
|
|
write FIdentifierAttri;
|
|
property InvalidAttri: TSynHighlighterAttributes read FInvalidAttri
|
|
write FInvalidAttri;
|
|
property KeyAttri: TSynHighlighterAttributes read FKeyAttri write FKeyAttri;
|
|
property NumberAttri: TSynHighlighterAttributes read FNumberAttri
|
|
write FNumberAttri;
|
|
property SpaceAttri: TSynHighlighterAttributes read FSpaceAttri
|
|
write FSpaceAttri;
|
|
property StringAttri: TSynHighlighterAttributes read FStringAttri
|
|
write FStringAttri;
|
|
property SymbolAttri: TSynHighlighterAttributes read FSymbolAttri
|
|
write FSymbolAttri;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
SynEditStrConst;
|
|
|
|
const
|
|
{ TODO: seems as if the Ansi version ignores the underscores and therfore
|
|
highlights more KeyWords than this(=Unicode) version.
|
|
Also the SampleSource uses EQU_ and EQU, so it isn't clear what is
|
|
the correct syntax: with other without the underscores.
|
|
}
|
|
KeyWords: UnicodeString = (
|
|
'ABA,ABX,ABY,ADCA_,ADCB_,ADDA_,ADDB_,ADDD_,ANDA_,ANDB_,ASLA,ASLB,' +
|
|
'ASL_,ASLD,ASRA,ASRB,ASR_,BCC_,BCLR_,BCS_,BEQ_,BGE_,BGT_,BHI_,BHS' +
|
|
'_,BITA_,BITB_,BLE_,BLO_,BLS_,BLT_,BMI_,BNE_,BPL_,BRA_,BRCLR_,BRN' +
|
|
'_,BRSET_,BSET_,BSR_,BVC_,BVS_,CBA,CLC,CLI,CLRA,CLRB,CLR_,CLV,CMP' +
|
|
'A_,CMPB_,COMA,COMB,COM_,CPD_,CPX_,CPY_,DAA,DECA,DECB,DEC_,DES,DE' +
|
|
'X,DEY,EORA_,EORB_,FDIV,IDIV,INCA,INCB,INC_,INS,INX,INY,JMP_,JSR_' +
|
|
',LDAA_,LDAB_,LDD_,LDS_,LDX_,LDY_,LSLA,LSLB,LSL_,LSLD,LSRA,LSRB,L' +
|
|
'SR_,LSRD,MUL,NEGA,NEGB,NEG_,NOP,ORAA_,ORAB_,PSHA,PSHB,PSHX,PSHY,' +
|
|
'PULA,PULB,PULX,PULY,ROLA,ROLB,ROL_,RORA,RORB,ROR_,RTI,RTS,SBA,SB' +
|
|
'CA_,SBCB_,SEC,SEI,SEV,STAA_,STAB_,STD_,STOP,STS_,STX_,STY_,SUBA_' +
|
|
',SUBB_,SUBD_,SWI,TAB,TAP,TBA,TEST,' +
|
|
'TPA,TSTA,TSTB,TST_,TSX,TSY,TXS,TYS,WAI,XGDX,XGDY,' + // end commands
|
|
'FCC_,FCB_,BSZ_,FDB_' // codegenerating directives
|
|
);
|
|
|
|
Directives: UnicodeString = (
|
|
'EQU_,OPT_,PAGE,ORG_,RMB_,END' // directives
|
|
);
|
|
|
|
procedure TSynHC11Syn.DoAddKeyword(AKeyword: UnicodeString; AKind: Integer);
|
|
var
|
|
HashValue: Integer;
|
|
begin
|
|
HashValue := HashKey(PWideChar(AKeyword));
|
|
FKeywords[HashValue] := TSynHashEntry.Create(AKeyword, AKind);
|
|
end;
|
|
|
|
function TSynHC11Syn.HashKey(Str: PWideChar): Integer;
|
|
|
|
function GetOrd: Integer;
|
|
begin
|
|
case Str^ of
|
|
'a'..'z': Result := 1 + Ord(Str^) - Ord('a');
|
|
'A'..'Z': Result := 1 + Ord(Str^) - Ord('A');
|
|
'0'..'9': Result := 28 + Ord(Str^) - Ord('0');
|
|
'_': Result := 27;
|
|
else Result := 0;
|
|
end
|
|
end;
|
|
|
|
begin
|
|
Result := 0;
|
|
while IsIdentChar(Str^) do
|
|
begin
|
|
{$IFOPT Q-}
|
|
Result := 7 * Result + GetOrd;
|
|
{$ELSE}
|
|
Result := (7 * Result + GetOrd) and $FFFFFF;
|
|
{$ENDIF}
|
|
Inc(Str);
|
|
end;
|
|
Result := Result and $FF; // 255
|
|
FStringLen := Str - FToIdent;
|
|
end;
|
|
|
|
function TSynHC11Syn.IdentKind(MayBe: PWideChar): TtkTokenKind;
|
|
var
|
|
Entry: TSynHashEntry;
|
|
begin
|
|
FToIdent := MayBe;
|
|
Entry := FKeywords[HashKey(MayBe)];
|
|
while Assigned(Entry) do
|
|
begin
|
|
if Entry.KeywordLen > FStringLen then
|
|
Break
|
|
else if Entry.KeywordLen = FStringLen then
|
|
if IsCurrentToken(Entry.Keyword) then
|
|
begin
|
|
Result := TtkTokenKind(Entry.Kind);
|
|
Exit;
|
|
end;
|
|
Entry := Entry.Next;
|
|
end;
|
|
Result := tkIdentifier;
|
|
end;
|
|
|
|
constructor TSynHC11Syn.Create(AOwner: TComponent);
|
|
begin
|
|
inherited Create(AOwner);
|
|
|
|
FCaseSensitive := True;
|
|
|
|
FKeywords := TSynHashEntryList.Create;
|
|
FCommentAttri := TSynHighlighterAttributes.Create(SYNS_AttrComment, SYNS_FriendlyAttrComment);
|
|
FCommentAttri.Style:= [fsItalic];
|
|
AddAttribute(FCommentAttri);
|
|
FIdentifierAttri := TSynHighlighterAttributes.Create(SYNS_AttrIdentifier, SYNS_FriendlyAttrIdentifier);
|
|
AddAttribute(FIdentifierAttri);
|
|
FInvalidAttri := TSynHighlighterAttributes.Create(SYNS_AttrIllegalChar, SYNS_FriendlyAttrIllegalChar);
|
|
AddAttribute(FInvalidAttri);
|
|
FKeyAttri := TSynHighlighterAttributes.Create(SYNS_AttrReservedWord, SYNS_FriendlyAttrReservedWord);
|
|
FKeyAttri.Style:= [fsBold];
|
|
AddAttribute(FKeyAttri);
|
|
FNumberAttri := TSynHighlighterAttributes.Create(SYNS_AttrNumber, SYNS_FriendlyAttrNumber);
|
|
AddAttribute(FNumberAttri);
|
|
FSpaceAttri := TSynHighlighterAttributes.Create(SYNS_AttrSpace, SYNS_FriendlyAttrSpace);
|
|
AddAttribute(FSpaceAttri);
|
|
FStringAttri := TSynHighlighterAttributes.Create(SYNS_AttrString, SYNS_FriendlyAttrString);
|
|
AddAttribute(FStringAttri);
|
|
FSymbolAttri := TSynHighlighterAttributes.Create(SYNS_AttrSymbol, SYNS_FriendlyAttrSymbol);
|
|
AddAttribute(FSymbolAttri);
|
|
FDirecAttri := TSynHighlighterAttributes.Create(SYNS_AttrPreprocessor, SYNS_FriendlyAttrPreprocessor);
|
|
AddAttribute(FDirecAttri);
|
|
SetAttributesOnChange(DefHighlightChange);
|
|
|
|
EnumerateKeywords(Ord(tkKey), Keywords, IsIdentChar, DoAddKeyword);
|
|
EnumerateKeywords(Ord(tkDirective), Directives, IsIdentChar, DoAddKeyword);
|
|
FDefaultFilter := SYNS_FilterAsm68HC11;
|
|
end; { Create }
|
|
|
|
destructor TSynHC11Syn.Destroy;
|
|
begin
|
|
FKeywords.Free;
|
|
inherited Destroy;
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymAsciiCharProc;
|
|
begin
|
|
FTokenID := tkString;
|
|
if (FLine[Run + 1] = #39) and (FLine[Run + 2] = #39) then Inc(Run, 2);
|
|
repeat
|
|
case FLine[Run] of
|
|
#0, #10, #13:
|
|
begin
|
|
FKeyWordType:=kwNone;
|
|
Break;
|
|
end;
|
|
end;
|
|
Inc(Run);
|
|
until FLine[Run] = #39;
|
|
if FLine[Run] <> #0 then Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymbolProc;
|
|
begin
|
|
FTokenID := tkSymbol;
|
|
Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymDollarProc;
|
|
begin
|
|
FTokenID := tkNumber;
|
|
Inc(Run);
|
|
while CharInSet(FLine[Run], ['0'..'9', 'A'..'F', 'a'..'f']) do
|
|
begin
|
|
Inc(Run);
|
|
end;
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymCRProc;
|
|
begin
|
|
FTokenID := tkSpace;
|
|
FKeyWordType := kwNone;
|
|
Inc(Run);
|
|
if FLine[Run] = #10 then Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymIdentProc;
|
|
begin
|
|
FTokenID := IdentKind(FLine + Run);
|
|
Inc(Run, FStringLen);
|
|
while IsIdentChar(FLine[Run]) do Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymLFProc;
|
|
begin
|
|
FKeyWordType := kwNone;
|
|
FTokenID := tkSpace;
|
|
Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymPercentProc;
|
|
begin
|
|
Inc(Run);
|
|
FTokenID := tkNumber;
|
|
while CharInSet(FLine[Run], ['0'..'1']) do
|
|
Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymNullProc;
|
|
begin
|
|
FTokenID := tkNull;
|
|
Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymNumberProc;
|
|
begin
|
|
Inc(Run);
|
|
FTokenID := tkNumber;
|
|
while CharInSet(FLine[Run], ['0'..'9']) do
|
|
Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymSpaceProc;
|
|
begin
|
|
Inc(Run);
|
|
if FKeyWordType in [kwOperandOver, kwNoOperand] then
|
|
begin
|
|
FKeyWordType := kwNone;
|
|
FTokenID := tkComment;
|
|
while not IsLineEnd(Run) do
|
|
Inc(Run);
|
|
end
|
|
else
|
|
begin
|
|
if FKeyWordType = kwOperand then
|
|
FKeyWordType := kwOperandOver;
|
|
FTokenID := tkSpace;
|
|
while (FLine[Run] <= #32) and not IsLineEnd(Run) do
|
|
Inc(Run);
|
|
end;
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymStarProc;
|
|
begin
|
|
Inc(Run);
|
|
if FKeyWordType = kwOperandOver then
|
|
FTokenID := tkSymbol
|
|
else
|
|
begin
|
|
FTokenID := tkComment;
|
|
while not IsLineEnd(Run) do
|
|
Inc(Run);
|
|
end;
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymStringProc;
|
|
begin
|
|
FTokenID := tkString;
|
|
if (FLine[Run + 1] = #34) and (FLine[Run + 2] = #34) then Inc(Run, 2);
|
|
repeat
|
|
case FLine[Run] of
|
|
#0, #10, #13:
|
|
Break;
|
|
end;
|
|
Inc(Run);
|
|
until FLine[Run] = #34;
|
|
if FLine[Run] <> #0 then Inc(Run);
|
|
end;
|
|
|
|
procedure TSynHC11Syn.SymUnknownProc;
|
|
begin
|
|
Inc(Run);
|
|
FTokenID := tkUnknown;
|
|
end;
|
|
|
|
procedure TSynHC11Syn.Next;
|
|
begin
|
|
FTokenPos := Run;
|
|
case FLine[Run] of
|
|
#39: SymAsciiCharProc;
|
|
'$': SymDollarProc;
|
|
#13: SymCRProc;
|
|
'A'..'Z', 'a'..'z', '_': SymIdentProc;
|
|
#10: SymLFProc;
|
|
'%': SymPercentProc;
|
|
#0: SymNullProc;
|
|
'0'..'9': SymNumberProc;
|
|
#1..#9, #11, #12, #14..#32: SymSpaceProc;
|
|
'*': SymStarProc;
|
|
#34: SymStringProc;
|
|
'#', ':', ',', ';', '(', ')': SymbolProc;
|
|
else SymUnknownProc;
|
|
end;
|
|
inherited;
|
|
end;
|
|
|
|
function TSynHC11Syn.GetDefaultAttribute(Index: Integer): TSynHighlighterAttributes;
|
|
begin
|
|
case Index of
|
|
SYN_ATTR_COMMENT: Result := FCommentAttri;
|
|
SYN_ATTR_IDENTIFIER: Result := FIdentifierAttri;
|
|
SYN_ATTR_KEYWORD: Result := FKeyAttri;
|
|
SYN_ATTR_STRING: Result := FStringAttri;
|
|
SYN_ATTR_WHITESPACE: Result := FSpaceAttri;
|
|
SYN_ATTR_SYMBOL: Result := FSymbolAttri;
|
|
else
|
|
Result := nil;
|
|
end;
|
|
end;
|
|
|
|
function TSynHC11Syn.GetEol: Boolean;
|
|
begin
|
|
Result := Run = FLineLen + 1;
|
|
end;
|
|
|
|
function TSynHC11Syn.GetTokenAttribute: TSynHighlighterAttributes;
|
|
begin
|
|
case FTokenID of
|
|
tkComment: Result := FCommentAttri;
|
|
tkDirective: Result := FDirecAttri;
|
|
tkIdentifier: Result := FIdentifierAttri;
|
|
tkKey: Result := FKeyAttri;
|
|
tkNumber: Result := FNumberAttri;
|
|
tkSpace: Result := FSpaceAttri;
|
|
tkString: Result := FStringAttri;
|
|
tkSymbol: Result := FSymbolAttri;
|
|
tkUnknown: Result := FIdentifierAttri;
|
|
else Result := nil;
|
|
end;
|
|
end;
|
|
|
|
function TSynHC11Syn.GetTokenKind: Integer;
|
|
begin
|
|
Result := Ord(FTokenID);
|
|
end;
|
|
|
|
function TSynHC11Syn.GetTokenID: TtkTokenKind;
|
|
begin
|
|
Result := FTokenID;
|
|
end;
|
|
|
|
function TSynHC11Syn.IsFilterStored: Boolean;
|
|
begin
|
|
Result := FDefaultFilter <> SYNS_FilterAsm68HC11;
|
|
end;
|
|
|
|
class function TSynHC11Syn.GetLanguageName: string;
|
|
begin
|
|
Result := SYNS_Lang68HC11;
|
|
end;
|
|
|
|
function TSynHC11Syn.GetSampleSource: UnicodeString;
|
|
begin
|
|
Result :=
|
|
'* TX.ASM'#13#10 +
|
|
'MAINORG EQU_ $F800'#13#10 +
|
|
' ORG $F800'#13#10 +
|
|
'MAIN EQU * ;Start assembling here'#13#10 +
|
|
' STAA SCCR2'#13#10 +
|
|
'loop:'#13#10 +
|
|
' LDAA #$05'#13#10 +
|
|
' BRA loop ;Do it again'#13#10 +
|
|
' ORG $FFFE ;Reset vector interrupt setup'#13#10 +
|
|
' END';
|
|
end;
|
|
|
|
class function TSynHC11Syn.GetFriendlyLanguageName: UnicodeString;
|
|
begin
|
|
Result := SYNS_FriendlyLang68HC11;
|
|
end;
|
|
|
|
initialization
|
|
{$IFNDEF SYN_CPPB_1}
|
|
RegisterPlaceableHighlighter(TSynHC11Syn);
|
|
{$ENDIF}
|
|
end.
|