680b811e22
Macro definition / invocation documentation provider that even tries to expand macros.
...
Moved some util classes around.
2021-10-03 20:26:33 +02:00
cbffc3d841
Label documentation now also works for local labels and includes end-of-line comment for label, too.
...
Symbol definition documentation now also includes comments in the same way as the label documentation does.
Refactored some code.
2021-10-03 18:55:42 +02:00
435b30efc3
Bump to next version, updated docs due to Yann's first public release of his plugin.
2021-10-02 20:01:51 +02:00
62f7f13323
Bumped to IntelliJ/CLion 2021.2.2
2021-09-25 21:29:17 +02:00
c4051a0377
'END' detection was breaking parsing, causing havoc.
2021-09-25 17:20:45 +02:00
a03de6c394
Added documentation provider info for global labels. Shows directives and comments above.
...
Fixed BNF for labels with preprocessor statements.
Bumped versions.
2021-09-25 15:19:05 +02:00
1bff1a12c2
Documentation for instruction with special register shows specific register expected.
2021-09-05 18:42:20 +02:00
665947827b
Updated build to latest versions.
2021-09-04 14:23:15 +02:00
3bb6165a58
Courtesy of Yann:
...
Bugfix: Special registers for address mode matching only worked with lower case register names.
Bugfix: movem with pc-relative mode was missing for weird immediate mode.
Bugfix: btst with pc-relative and weird immediate mode was missing.
Enhancement: Assembler syntax with implicit immediate 1 for shifts and rotations no longer cause syntax errors.
2021-09-04 14:08:10 +02:00
89bd964fe7
Minor updates to documentation.
2021-08-09 15:27:12 +02:00
0cb90ff8d7
'END' directive stops parsing. Prepared next release.
2021-08-09 12:14:02 +02:00
431caf64fd
Added inspection for unresolved symbols, macros and labels.
2021-08-09 11:26:13 +02:00
a3f7ddb4f7
New: Added inspection suppression possibility and quickfix.
2021-08-09 10:08:41 +02:00
593719043e
New: Code completion for local label definitions, suggesting undefined labels already referenced.
2021-08-08 13:40:01 +02:00
e0cdfef42b
New: Files in 'include' directives can be referenced and renamed/refactored.
2021-08-06 20:03:47 +02:00
8d7977927f
Added M68kIncludeFileProvider, but dunno what it's actually for.
2021-08-06 19:12:54 +02:00
ddf78ec210
Slightly reworked lexer to for a few directives:
...
'opt' and several other directives ('printt', 'fail' etc.) no longer causes a syntax error when unquoted.
'include', 'incdir' and 'incbin' and 'output' with '<pathname>' quotes no longer cause syntax error.
2021-08-06 10:06:48 +02:00
2c3daf28f7
TODO list. Prepared next release (for tomorrow).
2021-08-05 19:02:55 +02:00
1dcf288d27
Added inspection to warn about unexpected condition code unaffecting instructions before conditional instructions.
...
Extended documentation.
Bugfix in M68kDeadWriteInspection.
2021-08-05 18:42:32 +02:00
2abb5af8b0
Macros with register name now abort Dead Write analysis. Fix for modifying statements extending the with of the written data.
2021-08-05 16:21:32 +02:00
6c9a726b86
Preprocessor statements now abort Dead Write analysis.
2021-08-05 15:46:16 +02:00
921449cbb8
Refactored stuff.
...
Added control flow information to ISA.
In ISA exg is no longer treated as setting a definitive value.
Added inspection find dead writes to registers.
2021-08-04 17:39:54 +02:00
6f99c2ffcc
Moved Condition-Code stuff to separate file, added reverse mapping function.
...
Reworked Instruction Documentation provider, now shows condition codes.
Cosmetics: Removed MutableList information where unnecessary
2021-08-04 12:24:16 +02:00
5881dcdaf8
Optimized mnemonic lookup.
2021-08-03 18:28:53 +02:00
71398f51d2
Reworked and extended ISA to hold condition code testing and affecting information (not used yet).
...
Minor fix for `andi/eori/ori to ccr` which were not byte sized in ISA.
Added alternate condition code tests HS (=CC) and LO (=CS).
2021-08-03 13:45:44 +02:00
eb26793a20
movem ISA was wrong regarding movem.w <ea>,<registerlist> (sign extends registers).
...
Changed Register Flow Documentation wording from 'reads' to 'uses' and from 'modifies' to 'changes'.
Updated screenshot. Added another test case for M68kRegisterFlowDocumentationProviderTest.
2021-08-03 10:57:53 +02:00
954f42bf63
Tweaking for M68kRegisterFlowDocumentationProvider regarding colors, formatting and abbreviated documentation on hover. Prepared next release.
2021-08-03 07:59:47 +02:00
94001c8b87
Added explicit IndexRegister-PSI-Element. Major rework to support new DocumentationProvider on registers.
...
When asking for documentation on registers, a code flow analysis is done.
2021-08-02 20:54:30 +02:00
55403f89a6
Added a few tests for M68kSyntaxInspection.
2021-08-02 10:07:25 +02:00
7744b589d4
Added support for movem with register list crossing from data to address (e.g. d0-a6) as found in p61a source.
2021-08-02 09:43:42 +02:00
19e3b519db
Bugfix: Macro definitions with colons and without space supported (as found in P61a source).
2021-08-02 09:41:51 +02:00
587b284d25
Fix in movem ISA (supports pc relative if first parameter). Also, single registers must also work (often optimized by the assembler). Increased default max macro parsing length to 250 lines.
2021-08-02 09:41:51 +02:00
719460ebfe
Minor code refactoring.
2021-08-01 20:02:36 +02:00
44a4721d77
Added names for Adressing Modes.
...
Added Documentation Provider for symbol definitions (shows assigned declaration).
Added Documentation Provider for mnemonics (simple version, generated out of ISA information).
Work in progress for Register Flow Documentation Provider.
New minimum required version of IDE is now 2020.3.
2021-08-01 19:51:42 +02:00
09a4e62c7c
Bugfix: Interpretation of register lists was wrong in BNF.
...
Massively extended M68kIsa with description on register modifications (not yet used in production code).
Changed BNF for additional AddressingMode interfaces.
2021-08-01 10:08:01 +02:00
ce3cdbbed6
Bugfix: Uppercase hexadecimal literals were not parsed (JFlex bug?)
2021-07-31 14:12:58 +02:00
27b7593de8
Added several missing assembler directives (opt, machine, etc.)
2021-07-31 14:04:18 +02:00
3aeb415974
Massively reworked and extended ISA-Description class.
...
Added inspection to validate the correctness of a MC68000 instruction regarding operation size and address modes.
2021-07-31 13:56:07 +02:00
128330d2c7
Added Structure View filters for Symbols, Macros and Labels.
2021-07-30 15:25:48 +02:00
ef900e9c19
Added LICENSE.TXT, changed build.gradle to 2021.2 and added new build to plugin verification. Minor change to README.md regarding caching of coveralls badge.
2021-07-30 14:05:37 +02:00
8ea70f0dfa
Docs update. Prepared next release.
2021-07-28 08:00:09 +02:00
fa1ef0b3d5
Reduced lexer code by combining state rules. Removed one rule, that seemed to be wrong.
2021-07-27 20:27:58 +02:00
3de9e9eba2
Restored compatibility with IDEs versions < 2021.1. Added PluginVerifier to build.gradle.
2021-07-27 17:46:11 +02:00
25450a9bf8
Macro definitions are now word and indexed, macro calls reference to definition.
...
Macro definition refactoring and find usages support.
Structural View also shows macro definitions.
Missing REPT and ENDR assembler directives added.
Changed or added some icons at various places.
Reference search for global labels and symbols now uses stub index.
2021-07-27 16:34:49 +02:00
6e683eb6a0
Started working on macro support. Macro-Definition are now plain, unparsed lines. Added Syntax-Highlighter options.
2021-07-27 12:42:26 +02:00
f006199201
Prepared next release.
2021-07-27 08:01:03 +02:00
9553da6a1c
Minor fix for ExpressionsTest.
2021-07-26 20:02:20 +02:00
5ffffb5680
Added M68kGlobalLabelSymbolCompletionContributor to replace variants returned by M68kGlobalLabelSymbolReference, to have more control over resolution. Contributor also adds registers to code completion. Code tidying.
2021-07-26 19:52:48 +02:00
fc5e1f6bf7
Enhanced ISA description (no functional changes).
2021-07-26 15:44:13 +02:00
ad3b207362
Added missing test for comparing expressions. Deleted unused generated file for Label-Implementation, noticed problem in inheritance hierarchy and removed base interface M68kLabel, too.
2021-07-26 14:13:12 +02:00