- 27 Nov, 2014 2 commits
-
-
Christoph Mallon authored
-
Christoph Mallon authored
This replaces several 1/0 and true/false by yes/no.
-
- 16 Nov, 2014 1 commit
-
-
Christoph Mallon authored
ia32: Merge the attributes use_frame, need_stackent, need_32bit_stackent and need_64bit_stackent into one attribute. * Out of the 16 possible combinations of these four boolean attributes, only four are sensible. * This correct the latent bug, that not all of these attributes were compared in ia32_attrs_equal_().
-
- 13 Nov, 2014 1 commit
-
-
Christoph Mallon authored
ia32: Directly put the bitfields in ia32_attr_t instead of having another struct needlessly wrapping them.
-
- 18 Oct, 2014 1 commit
-
-
Matthias Braun authored
-
- 02 Oct, 2014 1 commit
-
-
Matthias Braun authored
-
- 15 Sep, 2014 1 commit
-
-
Matthias Braun authored
-
- 15 Aug, 2014 1 commit
-
-
Matthias Braun authored
This also allows to cleanup the finish neg/add carry flag fix code a big.
-
- 14 Aug, 2014 1 commit
-
-
yb9976 authored
-
- 08 Aug, 2014 1 commit
-
-
Andreas Fried authored
-
- 24 Jul, 2014 1 commit
-
-
Matthias Braun authored
This should fix strange overly long immediate values emitted in the assembler sometimes.
-
- 28 May, 2014 1 commit
-
-
Matthias Braun authored
-
- 08 Apr, 2014 1 commit
-
-
Christoph Mallon authored
-
- 27 Jan, 2014 1 commit
-
-
Christoph Mallon authored
-
- 04 Nov, 2013 1 commit
-
-
Matthias Braun authored
Assembler/linker never supported this anyway.
-
- 07 Oct, 2013 1 commit
-
-
Matthias Braun authored
-
- 04 May, 2013 1 commit
-
-
Matthias Braun authored
It has been empty for nearly all systems. People who used to put stuff in config.h can still create a config.h on their own and inject -include (gcc) or /FI (msvc) into their CPPFLAGS.
-
- 11 Mar, 2013 1 commit
-
-
yb9976 authored
-
- 21 Dec, 2012 1 commit
-
-
Christoph Mallon authored
-
- 18 Dec, 2012 1 commit
-
-
Christoph Mallon authored
-
- 12 Dec, 2012 1 commit
-
-
Matthias Braun authored
Just state the copyright and the project the files belong to. You can then find the COPYING file for the whole project.
-
- 02 Dec, 2012 1 commit
-
-
Christoph Mallon authored
-
- 30 Nov, 2012 2 commits
-
-
Christoph Mallon authored
It does not provide sufficient information to handle float in asm.
-
Christoph Mallon authored
-
- 27 Nov, 2012 3 commits
-
-
Christoph Mallon authored
-
Christoph Mallon authored
-
Christoph Mallon authored
-
- 21 Dec, 2011 1 commit
-
-
Matthias Braun authored
-
- 14 Dec, 2011 1 commit
-
-
Matthias Braun authored
-
- 05 Dec, 2011 1 commit
-
-
Matthias Braun authored
-
- 10 Nov, 2011 2 commits
-
-
Matthias Braun authored
-
Matthias Braun authored
-
- 02 Nov, 2011 1 commit
-
-
Matthias Braun authored
This is the new way of handling switch-jumps. The node contains a table which maps (ranges of) input values to proj numbers. Compared to a Cond-node this results in a clean consecutive sequence of Proj numbers (no searching for a free number for the default_pn anymore) and allows factoring multiple cases jumping to the same block in a single Proj (though we still need the optimisation in cfopt for that).
-
- 27 Sep, 2011 1 commit
-
-
Matthias Braun authored
This was an odd convention from the past, there's no need for it anymore.
-
- 15 Aug, 2011 2 commits
-
-
Matthias Braun authored
This tries to get the names in a consistent format. We basically have 2 views on register allocation/constraints now: 1) Register Requirements and Assigments are per-instruction. Each instruction has requirements on its inputs and outputs, register get assigned for outputs of an instruction (assignment is an attribute of an instruction, not of the Proj-nodes). The internal datastructures model this form! The functions here have the form: arch_get_irn_register_req_in(node, input_nr) arch_get_irn_register_in(node, input_nr) arch_get_irn_register_req_out(node, output_nr) arch_set_irn_register_out(node, output_nr, register) 2) Register Requirements and Assignments are on firm-values. This view allows to query/assign requirements and registers at the Proj nodes instead of the repsective predecessors. This is a convenience interface modeled on top of the other! The functions have the form: arch_get_irn_register_req(node) arch_get_irn_register(node) arch_set_irn_register(node, register)
-
Matthias Braun authored
-
- 15 Apr, 2011 1 commit
-
-
Matthias Braun authored
-
- 30 Mar, 2011 1 commit
-
-
Matthias Braun authored
-
- 09 Mar, 2011 1 commit
-
-
yb9976 authored
-
- 04 Mar, 2011 1 commit
-
-
Matthias Braun authored
-