00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #include "defs.h"
00045 #include "tn.h"
00046 #include "op.h"
00047 #include "bb.h"
00048 #include "wn.h"
00049 #include "symtab.h"
00050 #include "errors.h"
00051 #include "targ_sim.h"
00052 #include "ttype.h"
00053 #include "topcode.h"
00054 #include "register.h"
00055 #include "entry_exit_targ.h"
00056 #include "calls.h"
00057 #include "be_util.h"
00058 #include "data_layout.h"
00059 #include "stblock.h"
00060 #include "cgtarget.h"
00061 #include "whirl2ops.h"
00062 #include "cgexp.h"
00063 #include "cxx_template.h"
00064 #include "cg_spill.h"
00065 #include "cg.h"
00066
00067 static ST* save_ebx_loc = NULL;
00068 static INT32 last_pu_count = -1;
00069
00070 void EETARG_Generate_PIC_Exit_Code( BB* bb, OPS* ops )
00071 {
00072 FmtAssert(FALSE, ("NYI"));
00073 }
00074
00075
00076 void EETARG_Generate_PIC_Entry_Code( BB* bb, OPS* ops )
00077 {
00078 FmtAssert( BB_entry(bb), ("BB is not entry") );
00079 FmtAssert( Is_Target_32bit(), ("PIC entry for -m32 only") );
00080
00081 if( BB_handler( bb ) )
00082 return;
00083
00084 FmtAssert(FALSE, ("NYI"));
00085
00086 return;
00087 }
00088
00089
00090 void
00091 EETARG_Save_Pfs (TN *saved_pfs, OPS *ops)
00092 {
00093 }
00094
00095
00096 void
00097 EETARG_Restore_Pfs (TN *saved_pfs, OPS *ops)
00098 {
00099 }
00100
00101
00102 void
00103 EETARG_Adjust_SP_For_Entry( TN *incr, OPS *ops )
00104 {
00105 FmtAssert(FALSE, ("NYI: EETARG_Adjust_SP_For_Entry"));
00106 }
00107
00108 void
00109 EETARG_Adjust_SP_For_Exit( TN *incr, OPS *ops )
00110 {
00111 FmtAssert(FALSE, ("NYI: EETARG_Adjust_SP_For_Exit"));
00112 }
00113
00114 void
00115 EETARG_Fixup_Entry_Code (BB *bb)
00116 {
00117 }
00118
00119 void
00120 EETARG_Init_Entry_Exit_Code (WN *pu_wn, BOOL need_frame_pointer)
00121 {
00122 }
00123
00124 void EETARG_Save_Extra_Callee_Tns (OPS *ops)
00125 {
00126 }
00127
00128 void EETARG_Restore_Extra_Callee_Tns (OPS *ops)
00129 {
00130 }
00131
00132
00133 OP *
00134 EETARG_Build_Jump_Instead_Of_Call (OP *call_op)
00135 {
00136 FmtAssert(FALSE, ("NYI"));
00137
00138 return NULL;
00139 }
00140
00141 OP* EETARG_High_Level_Procedure_Exit()
00142 {
00143
00144 FmtAssert(FALSE, ("NYI"));
00145 return NULL;
00146 }