- 06 Jun, 2013 2 commits
-
-
Matthias Braun authored
-
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.
-
- 21 Jan, 2013 1 commit
-
-
yb9976 authored
-
- 09 Jan, 2013 7 commits
-
-
Matthias Braun authored
-
Matthias Braun authored
-
Matthias Braun authored
-
Matthias Braun authored
-
Matthias Braun authored
-
Robin Redeker authored
-
Christoph Mallon authored
Correct and simplify emitting Add/Sub on AMD64 now that should_be_same constraints are resolved with copies.
-
- 05 Jan, 2013 1 commit
-
-
Christoph Mallon authored
It is more consistent to use them and they are slightly faster to fetch.
-
- 21 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.
-
- 04 Dec, 2012 1 commit
-
-
Matthias Braun authored
-
- 29 Nov, 2012 2 commits
-
-
Christoph Mallon authored
beemit: Provide be_emit_node(), which merges the (almost) identical node emit functions of the backends.
-
Christoph Mallon authored
Also use one common be_emit_nothing().
-
- 24 Nov, 2012 2 commits
-
-
Christoph Mallon authored
-
Christoph Mallon authored
-
- 13 Nov, 2012 2 commits
-
-
Christoph Mallon authored
-
Christoph Mallon authored
-
- 24 Jul, 2012 1 commit
-
-
Christoph Mallon authored
-
- 19 Jul, 2012 1 commit
-
-
Christoph Mallon authored
Remove now redundant (and sometimes wrong) location info from the panic messages.
-
- 13 Jul, 2012 3 commits
-
-
Christoph Mallon authored
-
Christoph Mallon authored
-
Christoph Mallon authored
-
- 18 Jun, 2012 1 commit
-
-
Christoph Mallon authored
-
- 06 Jun, 2012 1 commit
-
-
Matthias Braun authored
Also factor out code that emits the label and comment at the beginning of a basic block.
-
- 13 May, 2012 1 commit
-
-
Christoph Mallon authored
-
- 26 Apr, 2012 1 commit
-
-
Matthias Braun authored
- We now always output dwarf3 so we can use DW_OP_call_frame_cfa and avoid construction location lists, but just reuse the callframe info lists. - Backends have to emit debug info as callframe calculation changes: The ia32 backend has a preliminary implementation which assumes esp offset of frame_type_size at the beginning of a block (currently always true), the no-omit-fp mode assumes ebp relative addressing (which is correct except for the prolog/epilogue insns)
-
- 25 Apr, 2012 1 commit
-
-
Matthias Braun authored
Remove the stabs debugoutput code and with it all the complexity of a modular debug output system. The only remaining debug output module is dwarf.
-
- 19 Dec, 2011 1 commit
-
-
Matthias Braun authored
The opcode list was a member of irprog before which wasn't really handled consistently. Also make sure opcodes are properly freed at ir_finish().
-
- 14 Dec, 2011 1 commit
-
-
Matthias Braun authored
-
- 10 Nov, 2011 1 commit
-
-
Matthias Braun authored
-
- 27 Oct, 2011 1 commit
-
-
Matthias Braun authored
-
- 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 1 commit
-
-
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)
-
- 12 Aug, 2011 1 commit
-
-
Matthias Braun authored
-
- 04 Mar, 2011 1 commit
-
-
Matthias Braun authored
-
- 28 Feb, 2011 1 commit
-
-
Matthias Braun authored
-