From 6969d50c820bd63043940b0e0f0ddc6e6ac763b0 Mon Sep 17 00:00:00 2001 From: buzbee Date: Fri, 15 Jun 2012 16:40:31 -0700 Subject: Invoke support for Quick Compiler Fleshed out invoke and const-string support. Fixed a bug in Phi node insertion. With this CL, the "Recursive Fibonacci" and "HelloWorld" milestones are met. Added are a set of "HL" (for High-Level) invoke intrinsics. Until we complete the merging of the Quick & Iceland runtime models the invoke code sequences are slightly different. Thus, the Greenland IR needs to represent invokes at a somewhat higher level than Iceland. The test for fast/slow path needs to happen during the lowering of the HLInvokeXXX intrinsics in both the Quick and Portable paths. This will generally be the case in the short term - push fast/slow path determination below the Greenland IR level. As unification proceeds, we'll pull as much as makes sense into the common front end. Change-Id: I0a18edf1be18583c0afdc3f7e10a3e4691968e77 --- src/compiler/codegen/CodegenUtil.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'src/compiler/codegen/CodegenUtil.cc') diff --git a/src/compiler/codegen/CodegenUtil.cc b/src/compiler/codegen/CodegenUtil.cc index 11982ba3ed..c189eb2795 100644 --- a/src/compiler/codegen/CodegenUtil.cc +++ b/src/compiler/codegen/CodegenUtil.cc @@ -361,7 +361,6 @@ void oatDumpPromotionMap(CompilationUnit *cUnit) /* Dump instructions and constant pool contents */ void oatCodegenDump(CompilationUnit* cUnit) { - LOG(INFO) << "/*"; LOG(INFO) << "Dumping LIR insns for " << PrettyMethod(cUnit->method_idx, *cUnit->dex_file); LIR* lirInsn; -- cgit v1.2.3-59-g8ed1b