aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add underlying type for `bit_set`gingerBill2018-08-171-9/+6
|
* bit_set['A'..'Z'], bit_set[0..8]gingerBill2018-08-161-1/+1
|
* Add `bit_set` typegingerBill2018-08-141-0/+45
|
* `-no-crt` flag for windows amd64gingerBill2018-08-131-0/+9
|
* BigInt support in the constant systemgingerBill2018-07-281-3/+12
|
* Scope to use flags rathers than booleansgingerBill2018-06-171-4/+2
|
* Move TypeAndValue to Ast from MapgingerBill2018-06-171-3/+3
|
* Big renaming: `AstNode` to `Ast`gingerBill2018-06-171-4/+4
|
* Use const & for Array<AstNode *> parametersgingerBill2018-06-031-1/+5
|
* Remove clutter parameters and begin parallelizing the type checkergingerBill2018-05-281-1/+1
|
* Remove code relating to default struct valuesgingerBill2018-05-201-101/+16
|
* Fix default initialized values for globals (#217)gingerBill2018-05-121-3/+29
|
* Make `any` use `typeid` rather than `^Type_Info`gingerBill2018-05-121-11/+8
|
* `typeid`gingerBill2018-05-121-0/+7
|
* Improve minimal dependency systemgingerBill2018-05-121-1/+7
|
* Fix #210gingerBill2018-05-061-0/+1
|
* Remove allocator parameter to `types.cpp` functionsgingerBill2018-03-231-10/+10
|
* Fix `using` determination ordergingerBill2018-03-031-1/+1
|
* `deprecated` attribute for procedure declarationsgingerBill2018-03-031-3/+3
|
* `cstring`gingerBill2018-02-281-0/+15
|
* Use Array<irValue *> in ir.cppgingerBill2018-02-251-4/+4
|
* Hexadecimal floats for "perfect values" 0h42f60000 == 123; use `bit_cast` in ↵gingerBill2018-02-251-1/+1
| | | | compiler
* Revert back to `gb_memmove`gingerBill2018-01-211-1/+1
|
* Remove #endifgingerBill2018-01-201-2/+0
|
* Cache type size/align; Improve speed of ir_print.cppgingerBill2018-01-201-216/+77
|
* Fix empty union IR buggingerBill2018-01-191-189/+194
|
* Add basic debug information needed for stepping over codegingerBill2018-01-181-24/+44
|
* Add extra comments for claritygingerBill2018-01-171-0/+2
|
* Debug fix target triple and procedure positioninggingerBill2018-01-171-1/+5
|
* Specific sized booleans: b8, b16, b32, b64gingerBill2018-01-171-2/+6
|
* Remove `u128` and `i128`gingerBill2018-01-131-7/+5
|
* "Fix" LLVM boolean bug (more like a bodge)gingerBill2017-12-221-24/+14
|
* `map` is internally backed by a pointer (i.e. a "reference type")gingerBill2017-12-171-2/+2
|
* Change how abs, min, max, and clamp are implemented for floatsgingerBill2017-12-111-11/+11
|
* Remove dead codegingerBill2017-12-031-0/+1
|
* Fix union_tag_size; Fix constant array of array literal printing with scalar ↵gingerBill2017-12-031-6/+21
| | | | contents
* Remove `vector` type (will be replaced by something else in the future)gingerBill2017-11-301-54/+0
|
* Remove `using` in arrays; Remove `_` non-exported struct fieldsgingerBill2017-11-281-2/+0
| | | | Start determining slow parts of the compiler
* New slice memory layout (ptr+len); `byte`gingerBill2017-11-261-1/+1
|
* Changed `string_has_extension` to `string_ends_with`.Zachary Pierson2017-11-211-1/+1
| | | | Fixed macOS target triple.
* Remove target triple from windowsgingerBill2017-11-191-1/+1
|
* Fix debug symbol generationgingerBill2017-11-191-11/+13
|
* Add `-debug` command (still in development)gingerBill2017-11-191-32/+34
|
* Begin with on debugging symbol; fix version number 0.7.0gingerBill2017-11-191-93/+128
|
* Custom thread local modelsgingerBill2017-11-031-2/+8
|
* Add string_set.cpp; Code clean upgingerBill2017-10-301-8/+9
|
* Attributes; @(link_name="foo")gingerBill2017-10-291-8/+9
|
* #alias type declarations; core library additions; `_global` import name for ↵gingerBill2017-10-291-0/+3
| | | | the global scope
* Fix enum iteration (issue #126)gingerBill2017-10-181-3/+4
|
* `foreign export` blockgingerBill2017-10-151-3/+7
| | | | | | | | | | | ``` foreign export { my_i32: i32; my_foo :: proc() -> i32 { return 123; } } ```