/* * SMPStaticAnalyzer.h - <see below>. * * Copyright (c) 2000, 2001, 2010 - University of Virginia * * This file is part of the Memory Error Detection System (MEDS) infrastructure. * This file may be used and modified for non-commercial purposes as long as * all copyright, permission, and nonwarranty notices are preserved. * Redistribution is prohibited without prior written consent from the University * of Virginia. * * Please contact the authors for restrictions applying to commercial use. * * THIS SOURCE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * * Author: University of Virginia * e-mail: jwd@virginia.com * URL : http://www.cs.virginia.edu/ * */ #ifndef SMPSTATICANALYZER_H #define SMPSTATICANALYZER_H 1 #define LAST_OPT_CATEGORY 9 #define LAST_TYPE_CATEGORY 15 extern int OptCategory[NN_last + 1]; // Keep statistics on how many instructions we saw in each optimization // category, and how many optimizing annotations were emitted for // each category. extern int OptCount[LAST_OPT_CATEGORY + 1]; extern int AnnotationCount[LAST_OPT_CATEGORY + 1]; // Unique data referent number to use in data annotations. extern unsigned long DataReferentID; extern const char *DataTypes[]; // Initialized operand used to copy-initialize other operands. extern op_t InitOp; #endif