2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2012-03-24 14:06:46 -04:00
|
|
|
* Copyright 2001, 2011 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
|
|
|
|
#include "error.h"
|
|
|
|
#include "cgp.h"
|
|
|
|
#include "cmd_qlf.h"
|
|
|
|
#include "list_file.h"
|
|
|
|
#include "source_file.h"
|
|
|
|
#include "rtnhdr.h"
|
|
|
|
#include "obj_file.h"
|
|
|
|
#include "reinit_externs.h"
|
|
|
|
#include "compiler.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "hashtab_str.h"
|
|
|
|
|
|
|
|
GBLREF command_qualifier cmd_qlf;
|
|
|
|
GBLREF char cg_phase;
|
|
|
|
GBLREF boolean_t mstr_native_align, save_mstr_native_align;
|
|
|
|
|
2012-03-24 14:06:46 -04:00
|
|
|
error_def(ERR_ASSERT);
|
|
|
|
error_def(ERR_FORCEDHALT);
|
|
|
|
error_def(ERR_GTMASSERT);
|
|
|
|
error_def(ERR_GTMASSERT2);
|
|
|
|
error_def(ERR_GTMCHECK);
|
|
|
|
error_def(ERR_MEMORY);
|
|
|
|
error_def(ERR_VMSMEMORY);
|
|
|
|
error_def(ERR_STACKOFLOW);
|
|
|
|
error_def(ERR_OUTOFSPACE);
|
|
|
|
|
2012-02-05 11:35:58 -05:00
|
|
|
CONDITION_HANDLER(compiler_ch)
|
|
|
|
{
|
|
|
|
|
|
|
|
START_CH;
|
|
|
|
if (DUMPABLE)
|
|
|
|
{
|
|
|
|
NEXTCH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd_qlf.qlf & CQ_WARNINGS)
|
|
|
|
PRN_ERROR;
|
|
|
|
|
|
|
|
COMPILE_HASHTAB_CLEANUP;
|
|
|
|
reinit_externs();
|
|
|
|
mstr_native_align = save_mstr_native_align;
|
|
|
|
|
|
|
|
if (cg_phase == CGP_MACHINE)
|
|
|
|
drop_object_file();
|
|
|
|
|
|
|
|
if (cg_phase > CGP_NOSTATE)
|
|
|
|
{
|
|
|
|
if (cg_phase < CGP_RESOLVE)
|
|
|
|
close_source_file();
|
|
|
|
if (cg_phase < CGP_FINI && (cmd_qlf.qlf & CQ_LIST || cmd_qlf.qlf & CQ_CROSS_REFERENCE))
|
|
|
|
{
|
|
|
|
close_list_file();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
UNWIND(NULL, NULL);
|
|
|
|
}
|