sparc: Add missing #include <stdint.h>.
[libfirm] / ir / be / beabi.h
index 8f30e27..10cc0b3 100644 (file)
@@ -1,55 +1,25 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
- *
  * This file is part of libFirm.
- *
- * This file may be distributed and/or modified under the terms of the
- * GNU General Public License version 2 as published by the Free Software
- * Foundation and appearing in the file LICENSE.GPL included in the
- * packaging of this file.
- *
- * Licensees holding valid libFirm Professional Edition licenses may use
- * this file in accordance with the libFirm Commercial License.
- * Agreement provided with the Software.
- *
- * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
 /**
  * @file
  * @brief       Backend ABI implementation.
  * @author      Sebastian Hack
- * @version     $Id$
  */
 #ifndef FIRM_BE_BEABI_H
 #define FIRM_BE_BEABI_H
 
-#include "firm_types.h"
-
-#include "pset.h"
-#include "pmap.h"
-#include "bitset.h"
+#include <stdbool.h>
 
-#include "be.h"
-#include "beirg.h"
-#include "bearch.h"
-#include "beabi.h"
-
-struct be_abi_call_flags_bits_t {
-       unsigned left_to_right          : 1;  /**< Arguments are from left to right. */
-       unsigned store_args_sequential  : 1;  /**< Use sequential stores for arguments. */
-       unsigned try_omit_fp            : 1;  /**< Try to omit the frame pointer. */
-       unsigned fp_free                : 1;  /**< The function can use any register as frame pointer. */
-       unsigned call_has_imm           : 1;  /**< A call can take the callee's address as an immediate. */
-       unsigned irg_is_leaf            : 1;  /**< 1, if the IRG is a leaf function. */
-       unsigned frame_is_setup_on_call : 1;  /**< Set to one, if there is already enough room on the stack for call args. */
-};
+#include "be_types.h"
+#include "firm_types.h"
 
-union be_abi_call_flags_t {
-       be_abi_call_flags_bits_t bits;
-       unsigned val;
+struct be_abi_call_flags_t {
+       bool try_omit_fp   : 1; /**< Try to omit the frame pointer. */
+       bool call_has_imm  : 1; /**< A call can take the callee's address as an
+                                    immediate. */
 };
 
 struct be_abi_callbacks_t {
@@ -75,13 +45,6 @@ void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const
  */
 void be_abi_call_set_pop(be_abi_call_t *call, int pop);
 
-/**
- * Set register class for call address.
- * @param call      The call.
- * @param cls       The register class for call address.
- */
-void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls);
-
 /**
  * The ABI can change when we call a function vs. when we have
  * been called.
@@ -137,23 +100,6 @@ void be_abi_call_res_reg(be_abi_call_t *call, int pos,
  */
 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call);
 
-/**
- * Get the method type of an ABI call object.
- * @param call The call object.
- * @return The method type for that call object.
- */
-ir_type *be_abi_call_get_method_type(const be_abi_call_t *call);
-
-be_abi_irg_t *be_abi_introduce(ir_graph *irg);
-
-/**
- * should be called by betranshlp.c while the graph is transformed
- */
-void be_abi_transform_fixup(ir_graph *irg);
-
-void be_abi_free(ir_graph *irg);
-
-ir_node *be_abi_get_callee_save_irn(ir_graph *irg, const arch_register_t *reg);
-ir_node *be_abi_get_ignore_irn(ir_graph *irg, const arch_register_t *reg);
+void be_abi_introduce(ir_graph *irg);
 
 #endif