From 32c52ed332aaed0dacb86298fe6e35b33e76e76d Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Thu, 26 Apr 2007 14:27:39 +0000 Subject: [PATCH] add license information [r13479] --- ir/arch/archop.c | 30 +++++++++++++++++++++-------- ir/arch/archop.h | 36 ++++++++++++++++++++++++----------- ir/arch/modeconv.c | 40 ++++++++++++++++++++++++--------------- ir/arch/modeconv.h | 47 +++++++++++++++++++++++++++------------------- 4 files changed, 100 insertions(+), 53 deletions(-) diff --git a/ir/arch/archop.c b/ir/arch/archop.c index f6ffe603e..314594397 100644 --- a/ir/arch/archop.c +++ b/ir/arch/archop.c @@ -1,12 +1,26 @@ /* - * Project: libFIRM - * File name: ir/arch/archop.c - * Purpose: Architecture dependand IR operations - * Author: - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2005 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyrigth (C) 1995-2007 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. + */ + +/** + * @file + * @brief architecture dependand IR operations + * @version $Id$ */ #ifdef HAVE_CONFIG_H #include "config.h" diff --git a/ir/arch/archop.h b/ir/arch/archop.h index 0d8b30c91..49b19031a 100644 --- a/ir/arch/archop.h +++ b/ir/arch/archop.h @@ -1,15 +1,29 @@ /* - * Project: libFIRM - * File name: ir/arch/archop.h - * Purpose: Architecture dependand IR operations - * Author: - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2005 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyrigth (C) 1995-2007 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. */ -#ifndef _FIRM_ARCH_ARCHOP_H_ -#define _FIRM_ARCH_ARCHOP_H_ + +/** + * @file + * @brief Architecture dependand IR operations + * @version $Id$ + */ +#ifndef FIRM_ARCH_ARCHOP_H +#define FIRM_ARCH_ARCHOP_H #include "firm_types.h" #include "dbginfo.h" @@ -67,4 +81,4 @@ ir_node *arch_transform_node_Mux(ir_node *mux); */ void firm_archops_init(const arch_ops_info *info); -#endif /* _FIRM_ARCH_ARCHOP_H_ */ +#endif diff --git a/ir/arch/modeconv.c b/ir/arch/modeconv.c index 6bad79f91..70ba4edfd 100644 --- a/ir/arch/modeconv.c +++ b/ir/arch/modeconv.c @@ -1,23 +1,33 @@ /* - * Project: libFIRM - * File name: ir/arch/modeconv.c - * Purpose: integer mode conversion - * Author: Michael Beck - * Created: - * CVS-ID: $Id$ - * Copyright: (c) 1998-2004 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyrigth (C) 1995-2007 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. */ /** - * @file modeconv.c - * - * Contains the mode conversion for architectures that did not support lesser - * integer modes. Converts all Op(mode_l) into Op(mode) operations by adding - * conversions were needed. These Conv operations must be implemented in the backend - * as bit-reducing ops. + * @file + * @brief integer mode conversion + * @author Michael Beck + * @version $Id$ + * @summary + * Contains the mode conversion for architectures that did not support lesser + * integer modes. Converts all Op(mode_l) into Op(mode) operations by adding + * conversions were needed. These Conv operations must be implemented in the + * backend as bit-reducing ops. */ - #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/ir/arch/modeconv.h b/ir/arch/modeconv.h index 64a11f4d5..813d9741e 100644 --- a/ir/arch/modeconv.h +++ b/ir/arch/modeconv.h @@ -1,26 +1,35 @@ /* - * Project: libFIRM - * File name: ir/arch/modeconv.h - * Purpose: integer mode conversion - * Author: Michael Beck - * Created: - * CVS-ID: $Id: - * Copyright: (c) 1998-2004 Universität Karlsruhe - * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + * Copyrigth (C) 1995-2007 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. */ /** - * @file modeconv.h - * - * Contains the mode conversion for architectures that did not support lesser - * integer modes. Converts all Op(mode_l) into Op(mode) operations by adding - * conversions were needed. These Conv operations must be implemented in the backend - * as bit-reducing ops. - * - * @author Michael Beck + * @file + * @brief integer mode conversion + * @author Michael Beck + * @version $Id$ + * @summary + * Contains the mode conversion for architectures that did not support lesser + * integer modes. Converts all Op(mode_l) into Op(mode) operations by adding + * conversions were needed. These Conv operations must be implemented in the + * backend as bit-reducing ops. */ -#ifndef _MODECONV_H_ -#define _MODECONV_H_ +#ifndef FIRM_ARCH_MODECONV_H +#define FIRM_ARCH_MODECONV_H #include "irgraph.h" @@ -32,4 +41,4 @@ */ void arch_mode_conversion(ir_graph *irg, ir_mode *mode); -#endif /* _MODECONV_H_ */ +#endif -- 2.20.1