Blame src/libpfm-3.y/include/perfmon/pfmlib_comp_i386.h

Packit 577717
/*
Packit 577717
 * I386 P6/Pentium M compiler specific macros
Packit 577717
 *
Packit 577717
 * Copyright (c) 2005-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 */
Packit 577717
#ifndef __PFMLIB_COMP_I386_P6_H__
Packit 577717
#define __PFMLIB_COMP_I386_P6_H__
Packit 577717
Packit 577717
#ifndef __PFMLIB_COMP_H__
Packit 577717
#error "you should never include this file directly, use pfmlib_comp.h"
Packit 577717
#endif
Packit 577717
Packit 577717
#ifndef __i386__
Packit 577717
#error "you should not be including this file"
Packit 577717
#endif
Packit 577717
Packit 577717
#ifdef __cplusplus
Packit 577717
extern "C" {
Packit 577717
#endif
Packit 577717
Packit 577717
static inline unsigned long
Packit 577717
pfmlib_popcnt(unsigned long v)
Packit 577717
{
Packit 577717
	unsigned long sum = 0;
Packit 577717
Packit 577717
	for(; v ; v >>=1) {
Packit 577717
		if (v & 0x1) sum++;
Packit 577717
	}
Packit 577717
	return sum;
Packit 577717
}
Packit 577717
Packit 577717
#ifdef __cplusplus /* extern C */
Packit 577717
}
Packit 577717
#endif
Packit 577717
Packit 577717
#endif /* __PFMLIB_COMP_IA64_H__ */