diff options
| author | 2012-08-02 15:55:30 -0700 | |
|---|---|---|
| committer | 2012-08-02 15:57:46 -0700 | |
| commit | babda950caf2d577aa57102c3281f0f3c36f3d6d (patch) | |
| tree | 469a16ecb709ab0bad151f01bb15253be0d9512e /src/compiler/codegen/MethodCodegenDriver.cc | |
| parent | 8302576126efae240eb21c7545cda7982437bd26 (diff) | |
Populate call info and inline float/double conversions on x86.
Also cleaned up neg-float/neg-double implementation.
Change-Id: I8e7fe76e36d3c31bae0a82a956691202c09b8e0c
Diffstat (limited to 'src/compiler/codegen/MethodCodegenDriver.cc')
| -rw-r--r-- | src/compiler/codegen/MethodCodegenDriver.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/compiler/codegen/MethodCodegenDriver.cc b/src/compiler/codegen/MethodCodegenDriver.cc index e56e627a4e..b93cbd94b1 100644 --- a/src/compiler/codegen/MethodCodegenDriver.cc +++ b/src/compiler/codegen/MethodCodegenDriver.cc @@ -179,10 +179,6 @@ CallInfo* oatNewCallInfo(CompilationUnit* cUnit, BasicBlock* bb, MIR* mir, { CallInfo* info = (CallInfo*)oatNew(cUnit, sizeof(CallInfo), true, kAllocMisc); -//FIXME: Disable fusing for x86 -#if defined(TARGET_X86) - info->result.location = kLocInvalid; -#else MIR* moveResultMIR = oatFindMoveResult(cUnit, bb, mir); if (moveResultMIR == NULL) { info->result.location = kLocInvalid; @@ -190,7 +186,6 @@ CallInfo* oatNewCallInfo(CompilationUnit* cUnit, BasicBlock* bb, MIR* mir, info->result = oatGetRawDest(cUnit, moveResultMIR); moveResultMIR->dalvikInsn.opcode = Instruction::NOP; } -#endif info->numArgWords = mir->ssaRep->numUses; info->args = (info->numArgWords == 0) ? NULL : (RegLocation*) oatNew(cUnit, sizeof(RegLocation) * info->numArgWords, false, kAllocMisc); |