Go to file
Stephen Heumann a44840718e Merge branch 'longlong'
* longlong:
  In PP expressions, make sure identifiers turn into 0LL.
  Optimize quad == 0 comparisons.
  Do unsigned quad inequalities without loading operands on stack.
  Do quad equality comparisons without loading operands on stack.
  Do unary quad ops without loading operand on stack.
  Do quad add/subtract without loading operands on stack.
  Implement support for doing quad ops without loading operands on stack.
  Evaluate constant expressions with long long and floating operands.
  Let functions store a long long return value directly into a variable in the caller.
  Optimize some quad ops to use interleaved loads and stores.
  Basic infrastructure for using different quadword locations in codegen.
  Allow static evaluation of ? : expressions with long long operands.
  Statically evaluate casts to and from long long.
  Implement conversions from long long to other types in the optimizer.
  Add various intermediate code peephole optimizations.
  Fix a comment.
  Support switch statements using long long expressions.
  Update headers to support long long (and intmax_t typedef'd as long long).
  Add the predefined macro __ORCAC_HAS_LONG_LONG__.
  Do preprocessor arithmetic in intmax_t/uintmax_t (aka long long types).
  Evaluate 64-bit comparisons in constant expressions.
  Add support for real to long long conversions.
  Implement comparisons for signed long long.
  Implement comparisons (>, >=, <, <=) for unsigned long long.
  Support 64-bit decimal constants in code.
  Evaluate arithmetic and shifts in long long constant expressions.
  Update printf/scanf format checker to match recent library changes.
  Implement && and || operators for long long types.
  Implement pc_ind (load indirect) for long long.
  Do not corrupt long long expressions that cannot be evaluated at compile time.
  Report errors in a few cases where the codegen finds unexpected types.
  Slightly optimize stack save code for calls to long long functions.
  Handle long long in pc_equ/pc_neq optimizations.
  Allow unsigned constants in "address+constant" constant expressions.
  Evaluate some kinds of long long operations in constant expressions.
  Implement 64-bit shifts.
  Implement basic peephole optimizations for some 64-bit operations.
  Do not copy CGI.Comments into CGI.pas.
  Generate code for long long to real conversions.
  Don't bogusly push stuff on the stack for conversions to non-long types.
  Implement support for functions returning (unsigned) long long.
  Compute how many bytes of arguments are passed to a function.
  Implement 64-bit division and remainder, signed and unsigned.
  Implement 64-bit multiplication support.
  Allow pointer arithmetic using long long values.
  Implement indirect store/copy operations for 64-bit types.
  Add long long support for a couple lint checks.
  Add long long support for the ! operator.
  Give an error when trying to evaluate constant expressions with long long operands.
  Make expressionValue a saturating approximation of the true value for long long expressions.
  Enable automatic comparison with 0 for long longs.
  Add some support for ++/-- on long long values.
  Add support for emitting 64-bit constants in statically-initialized data.
  Add most of the infrastructure to support 64-bit decimal constants.
  Support 64-bit integer constants in hex/octal/binary formats.
  Initial support for constants with long long types.
  Implement equality/inequality comparisons for 64-bit types.
  Implement remaining conversions of integer types to and from long long.
  Update the debugging format for long long values.
  Begin implementing conversions to and from 64-bit types.
  Implement 64-bit addition and subtraction.
  Add support for new pcodes in optimizer.
  Implement unary negation and bitwise complement for 64-bit types.
  Implement bitwise and/or/xor for 64-bit types.
  Handle (unsigned) long long in the front-end code for binary conversions.
  Restore old order of baseTypeEnum values.
  Implement basic load/store ops for long long.
  Initial code to recognize 'long long' as a type.
2021-02-26 19:48:08 -06:00
obj ORCA/C 2.1.0 source from the Opus ][ CD 2017-10-01 17:47:47 -06:00
ORCACDefs Merge branch 'master' into longlong 2021-02-17 15:38:06 -06:00
Tests Update tests to account for recent ORCALib changes. 2021-02-09 23:18:36 -06:00
Asm.pas Allow the WDM instruction to be used in the mini-assembler. 2020-01-11 21:58:21 -06:00
backup Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
C.Update.ReadMe Update release notes, mainly with notes on bug fixes. 2020-01-20 17:09:42 -06:00
cc.notes Give errors for certain invalid compound assignment expressions. 2021-01-29 12:49:28 -06:00
CC.pas Use centrally-defined token sets to recognize the beginning of declarations. 2020-01-18 15:21:27 -06:00
CC.rez Update ORCA/C version number to 2.2.0 B4. 2020-02-05 18:24:10 -06:00
CC.rez2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CCommon.asm Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
CCommon.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
CCommon.pas Support switch statements using long long expressions. 2021-02-17 19:41:46 -06:00
CGC.asm Implement conversions from long long to other types in the optimizer. 2021-02-18 23:27:18 -06:00
CGC.macros Implement conversions from long long to other types in the optimizer. 2021-02-18 23:27:18 -06:00
CGC.pas Implement conversions from long long to other types in the optimizer. 2021-02-18 23:27:18 -06:00
CGI.Comments Report errors in a few cases where the codegen finds unexpected types. 2021-02-13 18:46:00 -06:00
CGI.Debug Implement 64-bit division and remainder, signed and unsigned. 2021-02-05 12:42:48 -06:00
CGI.pas Implement support for doing quad ops without loading operands on stack. 2021-02-24 19:44:46 -06:00
Charset.pas Implement support for universal character names in identifiers. 2020-01-20 17:22:06 -06:00
count Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
DAG.pas Implement conversions from long long to other types in the optimizer. 2021-02-18 23:27:18 -06:00
DAG2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Debugger.md Update the debugging format for long long values. 2021-01-31 20:26:51 -06:00
Exp.macros Evaluate arithmetic and shifts in long long constant expressions. 2021-02-14 20:39:35 -06:00
Expression.asm Evaluate 64-bit comparisons in constant expressions. 2021-02-16 23:11:41 -06:00
Expression.pas In PP expressions, make sure identifiers turn into 0LL. 2021-02-25 21:42:54 -06:00
Gen.pas Optimize quad == 0 comparisons. 2021-02-25 21:40:32 -06:00
Header.pas Initial support for constants with long long types. 2021-02-03 23:11:23 -06:00
Header2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
LICENSE ORCA/C 2.1.0 source from the Opus ][ CD 2017-10-01 17:47:47 -06:00
linkit Add initial support for universal character names. 2020-01-19 23:59:54 -06:00
linkit2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
make Add initial support for universal character names. 2020-01-19 23:59:54 -06:00
make2 Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
MM.asm Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
MM.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
MM.pas Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
Native.asm Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
Native.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Native.pas Add support for real to long long conversions. 2021-02-16 18:47:28 -06:00
Native2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
ObjOut.asm Expand all tabs in assembly files to spaces. 2018-02-10 21:55:24 -06:00
ObjOut.macros Expand the size of the object buffer from 64K to 128K, and use 32-bit values to track related sizes. 2017-10-21 20:36:21 -05:00
ObjOut.pas Move some more code out of the blank segment to make space for static data. 2017-10-21 20:36:21 -05:00
ObjOut2.asm Expand all tabs in assembly files to spaces. 2018-02-10 21:55:24 -06:00
ObjOut2.pas Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Parser.pas Support switch statements using long long expressions. 2021-02-17 19:41:46 -06:00
Printf.pas Update printf/scanf format checker to match recent library changes. 2021-02-14 17:45:39 -06:00
README.md Add link to binary downloads in the readme shown on GitHub. 2017-10-24 21:10:11 -05:00
Scanner.asm Support 64-bit decimal constants in code. 2021-02-15 12:28:30 -06:00
Scanner.debug Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Scanner.macros Support 64-bit decimal constants in code. 2021-02-15 12:28:30 -06:00
Scanner.pas Evaluate constant expressions with long long and floating operands. 2021-02-21 18:43:53 -06:00
settypes Add settypes script for setting file types, and update README to refer to it. 2017-10-21 21:17:58 -05:00
smake Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Symbol.asm Move some code from the blank segment to named load segments. 2017-10-21 20:36:21 -05:00
Symbol.macros Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Symbol.pas Fix a comment. 2021-02-18 12:58:57 -06:00
Symbol.Print Change all text/source files to LF line endings. 2017-10-21 18:40:19 -05:00
Table.asm Initial support for constants with long long types. 2021-02-03 23:11:23 -06:00
Table.macros Recognize the new keywords from C99 and C11 as such. 2020-01-03 22:48:53 -06:00
Table.pas Spellcheck comments throughout the code. 2020-01-29 17:09:52 -06:00

ORCA-C

Apple IIGS ORCA/C Compiler, an ANSI C compiler for the 65816 with libraries for the Apple IIGS

Binary downloads for the latest ORCA/C release are on the releases page.

If you would like to make changes to this compiler and distribute them to others, feel free to submit them here. If the changes apply to compilation on and for an Apple IIGS, they will generally be approved for distribution on the master branch unless the changes deviate significantly from the ANSI C standard. For changes that deviate form ANSI C or changes that retarget the compiler to run on a different platform or generate code for a different platform, the project will either be forked or a new repository will be created, as appropriate.

The general conditions that must be met before a change is released on master are:

  1. The modified compiler must compile under the currently released version of ORCA/M and ORCA/Pascal.

  2. All samples from the original ORCA/C distribution must compile and execute under the modified compiler, or the sample must be updated, too.

  3. The compiler must pass the ORCA/C tset suite, or the test suite must be suitably modified, too.

  4. The compiler must work with the current ORCA/C libraries, or the libraries must be modified, too.

Contact support@byteworks.us if you need contributor access.

A complete distribution of the ORCA languages, including installers and documentation, is available from the Juiced GS store at https://juiced.gs/store/category/software/. It is distributed as part of the Opus ][ package.

Line Endings and File Types

The text and source files in this repository originally used CR line endings, as usual for Apple II text files, but they have been converted to use LF line endings because that is the format expected by Git. If you wish to move them to a real or emulated Apple II and build them there, you will need to convert them back to CR line endings.

If you wish, you can configure Git to perform line ending conversions as files are checked in and out of the Git repository. With this configuration, the files in your local working copy will contain CR line endings suitable for use on an Apple II. To set this up, perform the following steps in your local copy of the Git repository (these should be done when your working copy has no uncommitted changes):

  1. Add the following lines at the end of the .git/config file:
[filter "crtext"]
	clean = LC_CTYPE=C tr \\\\r \\\\n
	smudge = LC_CTYPE=C tr \\\\n \\\\r
  1. Add the following line to the .git/info/attributes file, creating it if necessary:
* filter=crtext
  1. Run the following commands to convert the existing files in your working copy:
rm .git/index
git checkout HEAD -- .

Alternatively, you can keep the LF line endings in your working copy of the Git repository, but convert them when you copy the files to an Apple II. There are various tools to do this. One option is udl, which is available both as a IIGS shell utility and as C code that can be built and used on modern systems.

In addition to converting the line endings, you will also have to set the files to the appropriate file types before building ORCA/C on a IIGS. The included settypes script (for use under the ORCA shell) does this for the sources to the ORCA/C compiler itself, although it does not currently cover the test cases and headers.