41 lines
900 B
C++
41 lines
900 B
C++
#include "Yap.h"
|
|
#include "amijit.h"
|
|
#include "clause.h"
|
|
#include "eval.h"
|
|
#if HAVE_ERRNO_H
|
|
#include <errno.h>
|
|
#else
|
|
extern int errno;
|
|
#endif
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
#define UPPER_ENTRY(S) \
|
|
tmp = (char*)malloc((strlen(S)+1)*sizeof(char)); \
|
|
while (S[i]) { \
|
|
if (S[i] != '-' && S[i] != '_' && S[i] != ' ') { \
|
|
if ((S[i] >= '0' && S[i] <= '9') || (S[i] == '.')) \
|
|
tmp[j] = S[i]; \
|
|
else \
|
|
tmp[j] = toupper(S[i]); \
|
|
j++; \
|
|
} \
|
|
i++; \
|
|
} \
|
|
tmp[j] = 0; \
|
|
strcpy(S, tmp); \
|
|
free(tmp);
|
|
|
|
void Yap_InitJitAnalysisPreds(void);
|
|
void Yap_InitJitCodegenPreds(void);
|
|
void Yap_InitJitConfigPreds(void);
|
|
void Yap_InitJitTransformPreds(void);
|
|
void Yap_InitJitStatisticPreds(void);
|
|
void Yap_InitJitDebugPreds(void);
|
|
|
|
#if YAP_JIT
|
|
Environment ExpEnv;
|
|
extern NativeContext *NativeArea;
|
|
extern IntermediatecodeContext *IntermediatecodeArea;
|
|
#endif
|