Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
2eac1656
Commit
2eac1656
authored
Aug 19, 2003
by
Götz Lindenmaier
Browse files
Added copyright headers
[r1707]
parent
8836b3ce
Changes
50
Hide whitespace changes
Inline
Side-by-side
firmjni/Dbginfo.c
View file @
2eac1656
...
...
@@ -10,9 +10,9 @@
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#include "Dbginfo.h"
#include "Dbginfo.h"
/* Generated. */
#include
<
firm.h
>
#include
"
firm.h
"
#include "dbginfo.h"
#include <stdio.h>
...
...
ir/Makefile.in
View file @
2eac1656
# Hey Emacs, this is a -*- makefile -*-
#
# libFIRM Project
#
# $Id$
# Project: libFIRM
# File name: ir/Makefile.in
# Purpose:
# Author: Boris Boesler, Till Riedel
# Modified by:
# Created:
# CVS-ID: $Id$
# Copyright: (c) 1999-2003 Universitt Karlsruhe
# Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
#
top_srcdir
:=
@top_srcdir@
...
...
ir/adt/Makefile.in
View file @
2eac1656
# Hey Emacs, this is a -*- makefile -*-
#
# libFIRM Project
#
# $Id$
# Project: libFIRM
# File name: ir/adt/Makefile.in
# Purpose:
# Author: Boris Boesler, Till Riedel
# Modified by:
# Created:
# CVS-ID: $Id$
# Copyright: (c) 1999-2003 Universitt Karlsruhe
# Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
#
top_srcdir
:=
@top_srcdir@
...
...
ir/adt/array.c
View file @
2eac1656
/* Array --- dynamic & flexible arrays.
Copyright (C) 1995, 1996 Markus Armbruster
All rights reserved. */
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/array.c
* Purpose: Array --- dynamic & flexible arrays.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
...
...
@@ -82,7 +88,7 @@ _arr_setlen (void *elts, int nelts, size_t elts_size)
return
dp
->
v
.
elts
;
}
\
void
*
_arr_resize
(
void
*
elts
,
int
nelts
,
size_t
eltsize
)
{
...
...
ir/adt/array.h
View file @
2eac1656
/* Declarations for Array.
Copyright (C) 1995, 1996 Markus Armbruster
All rights reserved. */
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/array.h
* Purpose: Declarations for Array.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* @@@ growing a dynamic on an obstack */
...
...
ir/adt/cookies.h
View file @
2eac1656
/* Magic cookies for dynamic data structures
Copyright (C) 1995, 1996 Christian von Roques & Markus Armbruster
All rights reserved. */
/*
* Project: libFIRM
* File name: ir/adt/cookies.h
* Purpose: Magic cookies for dynamic data structures.
* Author: Christian von Roques & Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* $Id$ */
#ifndef _COOKIES_H
#define _COOKIES_H
...
...
ir/adt/debug.c
View file @
2eac1656
/* Debug --- run time debug level management
Copyright (C) 1995, 1996 Christian von Roques
All rights reserved. */
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/debug.c
* Purpose: Debug --- run time debug level management
* Author: Christian von Roques
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
...
...
ir/adt/debug.h
View file @
2eac1656
/* Declarations for debug
Copyright (C) 1995, 1996 Christian von Roques
All rights reserved. */
/*
* Project: libFIRM
* File name: ir/adt/debug.h
* Purpose: Declarations for debug
* Author: Christian von Roques
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* $Id$ */
#ifndef _DEBUG_H_
#define _DEBUG_H_
...
...
ir/adt/eset.c
View file @
2eac1656
/* -------------------------------------------------------------------
* $Id$
* -------------------------------------------------------------------
* Datentyp: Vereinfachte Menge (hash-set) zum Speichern von
* Zeigern/Adressen.
*
* Erstellt: Hubert Schmid, 09.06.2002
* ---------------------------------------------------------------- */
/*
* Project: libFIRM
* File name: ir/adt/eset.c
* Purpose: Datentyp: Vereinfachte Menge (hash-set) zum Speichern von
* Zeigern/Adressen.
* Author: Hubert Schmid
* Modified by:
* Created: 09.06.2002
* CVS-ID: $Id$
* Copyright: (c) 2002 Universitt Karlsruhe
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#include "eset.h"
#include "set.h"
...
...
ir/adt/eset.h
View file @
2eac1656
/* -------------------------------------------------------------------
* $Id$
* -------------------------------------------------------------------
* Datentyp: Vereinfachte Menge (hash-set) zum Speichern von
* Zeigern/Adressen.
*
* Erstellt: Hubert Schmid, 09.06.2002
* ---------------------------------------------------------------- */
/*
* Project: libFIRM
* File name: ir/adt/eset.h
* Purpose: Datentyp: Vereinfachte Menge (hash-set) zum Speichern von
* Zeigern/Adressen.
* Author: Hubert Schmid
* Modified by:
* Created: 09.06.2002
* CVS-ID: $Id$
* Copyright: (c) 2002 Universität Karlsruhe
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifndef _ESET_H_
#define _ESET_H_
#include <stdbool.h>
...
...
ir/adt/host.h
View file @
2eac1656
/* Declarations describing the host machine and C compiler.
Copyright (C) 1995, 1996 Markus Armbruster
All rights reserved.*/
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/host.h
* Purpose: Declarations describing the host machine and C compiler.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifndef _HOST_H
#define _HOST_H
...
...
ir/adt/obst.h
View file @
2eac1656
/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
* All rights reserved.
*
* Authors: Martin Trapp, Christian Schaefer
*
*/
/*
* Project: libFIRM
* File name: ir/adt/obst.h
* Purpose:
* Author: Martin Trapp, Christian Schaefer
* Modified by:
* Created:
* CVS-ID: $Id$
* Copyright: (c) 1998-2003 Universitt Karlsruhe
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* $Id$ */
# include <obstack.h>
# include <stdlib.h>
...
...
ir/adt/pdeq.c
View file @
2eac1656
/* Pdeq --- double ended queue of generic pointers.
Copyright (C) 1995, 1996 Christian von Roques */
/*
* Project: libFIRM
* File name: ir/adt/pdeq.c
* Purpose: Pdeq --- double ended queue of generic pointers.
* Author: Christian von Roques
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* $Id$ */
#ifdef HAVE_CONFIG_H
# include <config.h>
...
...
ir/adt/pdeq.h
View file @
2eac1656
/* Declarations for pdeq.
Copyright (C) 1995, 1996 Christian von Roques */
/*
* Project: libFIRM
* File name: ir/adt/pdeq.h
* Purpose: Declarations for pdeq.
* Author: Christian von Roques
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* $Id$ */
#ifndef _PDEQ_H
#define _PDEQ_H
#ifndef _PDEQ_H
_
#define _PDEQ_H
_
#include <string.h>
#include "misc.h"
...
...
@@ -32,4 +40,4 @@ void *pdeq_getr (pdeq *);
void
_pdeq_vrfy
(
pdeq
*
dq
);
#endif
#endif
#endif
/* _PDEQ_H_ */
ir/adt/pmap.c
View file @
2eac1656
/* -------------------------------------------------------------------
* $Id$
* -------------------------------------------------------------------
* Datentyp: Vereinfachte Map (hash-map) zum Speichern von
* Zeigern/Adressen -> Zeigern/Adressen.
*
* Erstellt: Hubert Schmid, 09.06.2002
* ---------------------------------------------------------------- */
/*
* Project: libFIRM
* File name: ir/adt/eset.c
* Purpose: Datentyp: Vereinfachte Map (hash-map) zum Speichern von
* Zeigern/Adressen -> Zeigern/Adressen.
* Author: Hubert Schmid
* Modified by:
* Created: 09.06.2002
* CVS-ID: $Id$
* Copyright: (c) 2002 Universitt Karlsruhe
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#include "pmap.h"
...
...
ir/adt/pmap.h
View file @
2eac1656
/* -------------------------------------------------------------------
* $Id$
* -------------------------------------------------------------------
* Datentyp: Vereinfachte Map (hash-map) zum Speichern von
* Zeigern/Adressen -> Zeigern/Adressen.
*
* Erstellt: Hubert Schmid, 09.06.2002
* ---------------------------------------------------------------- */
/*
* Project: libFIRM
* File name: ir/adt/eset.c
* Purpose: Datentyp: Vereinfachte Map (hash-map) zum Speichern von
* Zeigern/Adressen -> Zeigern/Adressen.
* Author: Hubert Schmid
* Modified by:
* Created: 09.06.2002
* CVS-ID: $Id$
* Copyright: (c) 2002 Universitt Karlsruhe
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifndef _PMAP_H_
#define _PMAP_H_
...
...
ir/adt/pset.h
View file @
2eac1656
/* Declarations for pset.
Copyright (C) 1995, 1996 Markus Armbruster */
/* $Id$ */
/**
* @file pset.h
*
* Declarations for pset.
/*
* Project: libFIRM
* File name: ir/adt/pset.h
* Purpose: Declarations for pset.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
#ifndef _PSET_H
...
...
ir/adt/set.c
View file @
2eac1656
/* Set --- collection of entries that are unique wrt to a key.
Copyright (C) 1995, 1996 Markus Armbruster */
/*
* Project: libFIRM
* File name: ir/adt/set.c
* Purpose: Set --- collection of entries that are unique wrt to a key.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* This code is derived from:
...
...
ir/adt/set.h
View file @
2eac1656
/* Declarations for set.
Copyright (C) 1995, 1996 Markus Armbruster */
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/set.h
* Purpose: Declarations for set.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/**
* @file set.h
...
...
ir/adt/xmalloc.c
View file @
2eac1656
/* Xmalloc --- never failing wrappers for malloc() & friends.
Copyright (C) 1995, 1996 Markus Armbruster */
/* $Id$ */
/*
* Project: libFIRM
* File name: ir/adt/xmalloc.c
* Purpose: Xmalloc --- never failing wrappers for malloc() & friends.
* Author: Markus Armbruster
* Modified by:
* Created: 1999 by getting from fiasco
* CVS-ID: $Id$
* Copyright: (c) 1995, 1996 Markus Armbruster
* Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE.
*/
/* @@@ ToDo: replace this file with the one from liberty.
[reimplement xstrdup, ... ] */
...
...
Prev
1
2
3
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment