ia32: Simplify ia32_register_saved_by().
[libfirm] / ir / be / begnuas.h
index 2855f82..8536679 100644 (file)
@@ -22,7 +22,6 @@
  * @brief       Dumps global variables and constants as gas assembler.
  * @author      Christian Wuerdig, Matthias Braun
  * @date        04.11.2005
- * @version     $Id$
  */
 #ifndef FIRM_BE_BEGNUAS_H
 #define FIRM_BE_BEGNUAS_H
@@ -30,6 +29,7 @@
 #include <stdbool.h>
 #include "be_types.h"
 #include "beemitter.h"
+#include "bedwarf.h"
 
 typedef enum {
        GAS_SECTION_TEXT,            /**< text section - program code */
@@ -41,7 +41,12 @@ typedef enum {
        GAS_SECTION_CSTRING,         /**< section for constant strings */
        GAS_SECTION_PIC_TRAMPOLINES, /**< trampolines for pic codes */
        GAS_SECTION_PIC_SYMBOLS,     /**< contains resolved pic symbols */
-       GAS_SECTION_LAST = GAS_SECTION_PIC_SYMBOLS,
+       GAS_SECTION_DEBUG_INFO,      /**< dwarf debug info */
+       GAS_SECTION_DEBUG_ABBREV,    /**< dwarf debug abbrev */
+       GAS_SECTION_DEBUG_LINE,      /**< dwarf debug line */
+       GAS_SECTION_DEBUG_PUBNAMES,  /**< dwarf pub names */
+       GAS_SECTION_DEBUG_FRAME,     /**< dwarf callframe infos */
+       GAS_SECTION_LAST = GAS_SECTION_DEBUG_FRAME,
        GAS_SECTION_TYPE_MASK    = 0xFF,
 
        GAS_SECTION_FLAG_TLS     = 1 << 8,  /**< thread local flag */
@@ -83,7 +88,8 @@ void be_gas_emit_switch_section(be_gas_section_t section);
  * emit assembler instructions necessary before starting function code
  */
 void be_gas_emit_function_prolog(const ir_entity *entity,
-                                 unsigned po2alignment);
+                                 unsigned po2alignment,
+                                 const parameter_dbg_info_t *paramter_infos);
 
 void be_gas_emit_function_epilog(const ir_entity *entity);
 
@@ -101,6 +107,17 @@ void be_gas_emit_entity(const ir_entity *entity);
  */
 void be_gas_emit_block_name(const ir_node *block);
 
+/**
+ * Starts a basic block. Emits an assembler label "blockname:" if needs_label
+ * is true, otherwise a comment with the blockname if verboseasm is enabled.
+ */
+void be_gas_begin_block(const ir_node *block, bool needs_label);
+
+/**
+ * emit a string (takes care of escaping special chars)
+ */
+void be_gas_emit_cstring(const char *string);
+
 /**
  * Starts emitting a compilation unit. This emits:
  *  - global assembler snippets
@@ -125,7 +142,8 @@ typedef ir_node* (*get_cfop_target_func)(const ir_node *cfop);
 /**
  * Emits a jump table for switch operations
  */
-void emit_jump_table(const ir_node *node, long default_pn, ir_entity *table,
-                     get_cfop_target_func get_cfop_target);
+void be_emit_jump_table(const ir_node *node, const ir_switch_table *table,
+                        ir_entity *entity,
+                        get_cfop_target_func get_cfop_target);
 
 #endif