X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fident%2Fident.h;h=99703159f7e20764c007b751ed33f00ea536c1b1;hb=fbcb96cc20a7b5d06136e4c70870e86173e658eb;hp=d460888177c4ff3ed634b76b144a4d203aa771a9;hpb=d425e7be1083c3da3bec9195fa877d894b013844;p=libfirm diff --git a/ir/ident/ident.h b/ir/ident/ident.h index d46088817..99703159f 100644 --- a/ir/ident/ident.h +++ b/ir/ident/ident.h @@ -1,12 +1,14 @@ -/* Declarations for ident. - Copyright (C) 1995, 1996 Markus Armbruster */ - -/* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe -* All rights reserved. -* -* Authors: Martin Trapp, Christian Schaefer -*/ - +/* + * Project: libFIRM + * File name: ir/common/ident_t.h + * Purpose: Data type for unique names. + * Author: Goetz Lindenmaier + * Modified by: + * Created: + * CVS-ID: $Id$ + * Copyright: (c) 1999-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ /** * @file ident.h * @@ -15,7 +17,6 @@ * Identifiers are used in the firm library. This is the interface to it. */ -/* $Id$ */ # ifndef _IDENT_H_ # define _IDENT_H_ @@ -27,74 +28,109 @@ /* Identifiers */ /** - * the abstract data type ident + * The abstract data type ident. + * + * An ident represents an unique string. The == operator + * is sufficient to compare two idents. */ typedef const struct set_entry ident; /** * Store a string and create an ident. + * * Stores a string in the ident module and returns a handle for the string. - * Copies the string. + * + * Copies the string. @p str must be zero terminated + * + * @param str - the string which shall be stored + * + * @return id - a handle for the generated ident + * + * @see get_id_str(), get_id_strlen() + */ +ident *new_id_from_str (const char *str); + +/** + * Store a string and create an ident. + * + * Stores a string in the ident module and returns a handle for the string. + * + * Copies the string. This version can take non-zero-terminated strings * * @param str - the string (or whatever) which shall be stored * @param len - the length of the data in bytes * * @return id - a handle for the generated ident * - * @see id_to_str, id_to_strlen + * @see new_get_id_str(), get_id_strlen() */ -INLINE ident *id_from_str (const char *str, int len); +INLINE ident *id_from_str (const char *str, int len); /** * Returns a string represented by an ident. - * Returns the string cp represented by id. This string cp is not - * NULL terminated! The string may not be changed. + * + * Returns the string represented by id. This string is + * NULL terminated. The string may not be changed. * * @param id - the ident * * @return cp - a string * - * @see id_from_str, id_to_strlen + * @see new_get_id_str(), id_from_str(), get_id_strlen() */ -INLINE const char *id_to_str (ident *id); +INLINE const char *get_id_str (ident *id); +#define id_to_str get_id_str /** - * Returns the length of a string represented by an ident. + * Returns the length of the string represented by an ident. * * @param id - the ident * * @return len - the length of the string * - * @see id_from_str, id_to_str + * @see new_get_id_str(), id_from_str(), get_id_str() */ -INLINE int id_to_strlen(ident *id); - +INLINE int get_id_strlen(ident *id); +#define id_to_strlen get_id_strlen /** - * Returns true if prefix is prefix of an ident. + * Returns true if prefix is a prefix of an ident. * * @param prefix - the prefix * @param id - the ident * - * @see id_from_str, id_to_str, id_is_prefix + * @see new_get_id_str(), id_from_str(), get_id_str(), id_is_prefix() */ int id_is_prefix (ident *prefix, ident *id); /** - * Returns true if suffix is suffix of id. + * Returns true if suffix is a suffix of an ident. * * @param suffix - the suffix * @param id - the ident * - * @see id_from_str, id_to_str, id_is_prefix + * @see new_get_id_str(), id_from_str(), get_id_str(), id_is_prefix() */ int id_is_suffix (ident *suffix, ident *id); +/** + * Return true if an ident contains a given character. + * + * @param id - the ident + * @param c - the character + * + * @see new_get_id_str(), id_from_str(), get_id_str() + */ +int id_contains_char (ident *id, char c); + /** * Prints the ident to stdout. * - * @param id - The ident to print. + * @param id - The ident to be printed. + * + * @return + * number of btes written * - * @see id_from_str, id_to_str, id_is_prefix, fprint_id + * @see new_get_id_str(), id_from_str(), get_id_str(), id_is_prefix(), fprint_id() */ int print_id (ident *id); @@ -104,7 +140,10 @@ int print_id (ident *id); * @param F - file pointer to print the ident to. * @param id - The ident to print and the file. * - * @see id_from_str, id_to_str, id_is_prefix, print_id + * @return + * number of btes written + * + * @see new_get_id_str(), id_from_str(), get_id_str(), id_is_prefix(), print_id() */ int fprint_id (FILE *F, ident *id);