X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fcpset.c;h=ead80eb03299a8505b1731a83903d053f6f82241;hb=4bc38ea2ba218ad082162de7ff3dfeadd5b66561;hp=ce83865a6e3e59fabe473ee35ebd70799f6dce04;hpb=1620656c764bdedba64d6944d24957e6b564bbdb;p=libfirm diff --git a/ir/adt/cpset.c b/ir/adt/cpset.c index ce83865a6..ead80eb03 100644 --- a/ir/adt/cpset.c +++ b/ir/adt/cpset.c @@ -1,4 +1,32 @@ -#include +/* + * 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. + */ + +/** + * @file + * @brief Custom pointer set + * @author Matthias Braun + * @version $Id$ + * + * This implements a set of pointers which allows to specify custom callbacks + * for comparing and hashing it's elements. + */ +#include "config.h" #include "cpset.h" @@ -8,8 +36,9 @@ #define ValueType void* #define NullValue NULL #define DeletedValue ((void*)-1) -#define Hash(this,value) this->hash_function(value) +#define Hash(this,key) this->hash_function(key) #define KeysEqual(this,key1,key2) this->cmp_function(key1, key2) +#define SCALAR_RETURN #define SetRangeEmpty(ptr,size) memset(ptr, 0, (size) * sizeof(cpset_hashset_entry_t)) #define hashset_init _cpset_init