aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Support 128-bit integers `i128` `u128`gingerBill2019-05-281-34/+61
|
* Allow booleans to be assigned to a 1-bit bit field valuegingerBill2019-05-091-2/+2
|
* Minor change to bit_field assignment rulesgingerBill2019-05-041-3/+7
|
* `#load` directive (request from #368) (Basic implementation)gingerBill2019-04-201-1/+14
|
* Fix #raw_union bug caused by typo #349gingerBill2019-03-141-1/+1
|
* Fix bugs: Array Literals with constant elements; IR printing of raw ↵gingerBill2019-02-241-2/+5
| | | | procedure types
* Allow basic arithmetic operations for vectorsgingerBill2019-02-231-1/+1
|
* `intrinsics.vector` type (Experimental)gingerBill2019-02-231-0/+35
|
* Add "none" calling conventiongingerBill2019-02-231-0/+1
|
* Add extra dead code eliminationgingerBill2019-02-101-10/+9
|
* Fix data layout issue on Windows; Remove unused loads in SSAgingerBill2019-02-101-19/+17
|
* Extra checks to reduce mem.zero callsgingerBill2019-02-061-1/+1
|
* Fix #322, now correctly printing big strings.thebirk2019-02-021-0/+5
|
* Source_Code_Location.hash; %#v printing for Source_Code_Location; allow ↵gingerBill2019-01-051-0/+3
| | | | typeid for map keys
* Remove alignment experimentgingerBill2019-01-041-1/+1
|
* ir_print: Ignore load's aligngingerBill2019-01-041-1/+1
| | | | (experimental idea as it might not be needed)
* Fix TODO ParameterValue_LocationgingerBill2019-01-041-10/+12
|
* `static` variable declarations (Experimental)gingerBill2018-12-281-0/+2
|
* Fix `not` for bit setsgingerBill2018-12-171-3/+3
|
* Fix polymorphic record types with constant value parametersgingerBill2018-12-141-1/+2
|
* Fix polymorphic procedure generation with debug informationgingerBill2018-12-141-1/+1
|
* Fix bit sets with custom endian underlying typegingerBill2018-12-021-0/+8
|
* Fix double declarations of `bswap`s in LLVM IRgingerBill2018-12-021-3/+10
|
* Endian specific integers: e.g. i32 i32le i32begingerBill2018-12-021-12/+47
|
* Modify how custom alignment is printed for LLVM IRgingerBill2018-11-291-6/+38
|
* `opaque` keyword and typegingerBill2018-11-111-0/+4
|
* Fix issue with complication of -debug that is caused sometimes due to lambda ↵gingerBill2018-11-111-1/+3
| | | | procedures.
* Fix CompositeType for zero length arraysgingerBill2018-10-291-2/+2
|
* Built-in procedure `#defined`gingerBill2018-10-271-4/+5
|
* Merge pull request #260 from lachsinc/mastergingerBill2018-10-241-47/+258
|\ | | | | [WIP] Provide llvm with more debug info (for Visual Studio debugger support)
| * Add debug info for proc ptrs.lachsinc2018-10-051-2/+7
| |
| * Cleanup unused AllProcs.lachsinc2018-10-051-10/+0
| |
| * Tuple debug info (untested). Generated locals now flow through debug info.lachsinc2018-10-051-3/+4
| |
| * Add arg # for proc param locals.lachsinc2018-10-051-1/+0
| |
| * Cleanup; Move enums/globals di inside CompileUnit. Minor comment cleanup.lachsinc2018-10-041-2/+2
| |
| * Lexical block debug info.lachsinc2018-10-041-2/+15
| |
| * bit_set / bit_field debug info.lachsinc2018-10-021-1/+10
| |
| * Cleanup.lachsinc2018-10-011-8/+4
| |
| * Minor cleanup.lachsinc2018-10-011-17/+7
| |
| * Stepping working. Cleanup.lachsinc2018-10-011-22/+21
| |
| * Add various debug location stuff.lachsinc2018-09-301-3/+2
| |
| * Add debug location stack.lachsinc2018-09-301-21/+28
| |
| * Tagged union debug info. Aggregate type fixes (unions inside structs etc.).lachsinc2018-09-271-0/+4
| |
| * Cleanup debug info 'name' stuff.lachsinc2018-09-271-34/+33
| |
| * Fix pointers to all things debug info. Cleanup param order. Make scope/file ↵lachsinc2018-09-271-15/+14
| | | | | | | | optional for relevent types.
| * Add support for any. Fix rawptr debug type.lachsinc2018-09-261-3/+5
| |
| * Cleanup comments/todos.lachsinc2018-09-261-5/+3
| |
| * Add debug info for globals. Misc debug info cleanup.lachsinc2018-09-261-9/+53
| |
| * Add DebugInfoArray as separate debug info type. Minor cleanup of various ↵lachsinc2018-09-251-28/+22
| | | | | | | | debug infos.
| * String debug info. Minor cleanup of derived / composite debug info output.lachsinc2018-09-191-6/+8
| |