Commit Graph

108 Commits

Author SHA1 Message Date
0ee3eec478 add extra type checks to Compiler::store 2014-05-30 22:16:38 -06:00
8b1739dc0f remove redundant Compiler::stackCall resultSize parameter 2014-05-30 22:16:38 -06:00
1d466a800e remove redundant Compiler::call resultSize parameter 2014-05-30 22:16:38 -06:00
9805ff94b4 remove redundant Compiler::memory scale parameter 2014-05-30 22:16:38 -06:00
f9b781149e add extra type checks to Compiler::store and Compiler::memory 2014-05-30 22:16:38 -06:00
1fc6011bf7 add extra flavor type check to Compiler::store 2014-05-30 22:16:37 -06:00
aef5acce84 add flavor type check to Compiler::store 2014-05-30 22:16:35 -06:00
2ed52c05a8 use ir::Type in Compiler::store 2014-05-30 21:19:33 -06:00
8af9bb8297 change Compiler::register_ to Compiler::threadRegister, since it was only used as such 2014-05-30 21:19:32 -06:00
2d444830d0 use ir::Type in Compiler::unaryOp and Compiler::binaryOp 2014-05-30 21:19:32 -06:00
6ed7681dc0 use ir::Type in f2i and friends, instead of aSize 2014-05-30 21:19:27 -06:00
704c05f818 use ir::Type in place of Compiler::OperandType 2014-05-29 15:30:46 -06:00
d8914a9646 use ir::Type in Compiler::initLocal 2014-05-29 15:30:46 -06:00
4bfb359cdd use ir::Type in Compiler::pop 2014-05-29 15:30:46 -06:00
13342d28be use ir::Type in Compiler::save 2014-05-29 15:30:46 -06:00
75f0812f7a remove unused Compiler::push method 2014-05-29 15:30:46 -06:00
49a5a9f398 use ir::Type in Compiler::push 2014-05-29 15:30:45 -06:00
d9fee1025c use ir::Type in Compiler::return_ 2014-05-29 15:30:45 -06:00
587b1e3eda use ir::Type in place of lir::ValueType in Value 2014-05-29 15:30:45 -06:00
855534b152 introduce ir::Type and begin migrating i2f and friends to it 2014-05-29 15:30:45 -06:00
9b7d0d1624 update copyright years 2014-04-23 15:33:41 -06:00
5ffdfecdc2 remove vm from code paths, to match namespacing 2014-02-21 13:32:28 -07:00
eab36b3a23 Remove boilerplate code (nullaryOp methods in Compiler) 2013-12-18 16:51:20 -07:00
bd7b66a898 Remove boilerplate code (unaryOp methods in Compiler) 2013-12-18 16:43:15 -07:00
07d0f1172f Remove boilerplate code (float binaryOp methods in Compiler) 2013-12-18 15:22:38 -07:00
d5c1a094ca Remove boilerplate code (general binaryOp methods in Compiler) 2013-12-18 15:11:30 -07:00
b66a8549fd Remove boilerplate code (jump* methods in Compiler) 2013-12-18 14:38:05 -07:00
06432253ba consolidate many implicit list types into one 2013-12-11 10:54:50 -07:00
a9d9bc5d20 fix Clang warnings 2013-07-03 13:33:46 -07:00
87b02eb949 update copyright years
Previously, I used a shell script to extract modification date ranges
from the Git history, but that was complicated and unreliable, so now
every file just gets the same year range in its copyright header.  If
someone needs to know when a specific file was modified and by whom,
they can look at the Git history themselves; no need to include it
redundantly in the header.
2013-07-02 20:52:38 -06:00
9327043bc5 Merge branch 'master' into wip
Conflicts:
	makefile
	src/codegen/arm/assembler.cpp
	src/codegen/powerpc/assembler.cpp
	src/codegen/x86/assembler.cpp
2013-02-27 19:27:07 -07:00
5e2d00010b move headers from src to src/avian
This is necessary to avoid name conflicts on various platforms.  For
example, iOS has its own util.h, and Windows has a process.h.  By
including our version as e.g. "avian/util.h", we avoid confusion with
the system version.
2013-02-27 13:33:29 -07:00
4c8b593539 break Architecture out of Assembler 2013-02-23 23:03:01 -07:00
1f0833252d Merge branch 'master' into wip
Conflicts:
	src/codegen/compiler/event.cpp
	src/codegen/x86/assembler.cpp
	src/common.h
2013-02-20 11:27:39 -07:00
b9e281612b move runtime-array to include 2013-02-19 22:56:05 -07:00
987af120d8 move codegen headers to include/ 2013-02-19 22:21:22 -07:00
49bfda3932 construct SiteMasks based on OperationMasks 2013-02-19 09:05:30 -07:00
4462b87f10 group typeMask and registerMask into OperandMask, for Architecture::plan 2013-02-19 09:05:30 -07:00
2db0303e2f further compiler cleanup / organization 2013-02-13 23:23:07 -07:00
94ddb62b5f move FrameSiteEvent out of compiler.cpp 2013-02-13 22:13:56 -07:00
be86d26512 move BoundsCheckEvent out of compiler.cpp 2013-02-13 22:13:56 -07:00
d00950458f move JumpEvent out of compiler.cpp 2013-02-13 22:13:56 -07:00
65b7cf047c move BranchEvent out of compiler.cpp 2013-02-13 22:13:56 -07:00
18e6f28ff4 move MemoryEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
9c102bc1a8 move OperationEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
70f9209a6e move TranslateEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
8a61b38a01 move CombineEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
5ad0eb86d3 move MoveEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
165c77d772 move ReturnEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00
0f6e098b69 move CallEvent out of compiler.cpp 2013-02-13 22:13:55 -07:00