예제 #1
0
파일: treetest.c 프로젝트: bakumandfp/tiger
/* print the assembly language instructions to filename.s */
static void doProc(FILE *out, F_frame frame, T_stm body)
{
	T_stmList stmList;
	
	stmList = C_linearize(body);
	stmList = C_traceSchedule(C_basicBlocks(stmList));
	printStmList(stdout, stmList);
}
예제 #2
0
void Tr_printTree(Tr_exp exp){
	printStmList(stdout, T_StmList(unNx(exp), NULL));
}