diff options
| author | Andy McFadden <fadden@android.com> | 2011-02-11 15:26:10 -0800 |
|---|---|---|
| committer | Andy McFadden <fadden@android.com> | 2011-02-11 15:42:02 -0800 |
| commit | 750d110b62cef538e193b6f91f5239b0c4b63ef1 (patch) | |
| tree | 2e65a1530ecff3bc55dfd7b757834d7ac9f58fca /vm/compiler/codegen/arm/CodegenDriver.c | |
| parent | 79cf850f7b9153ab7651a4bee3bdee137a226351 (diff) | |
Rename invoke-direct-empty to invoke-object-init
The invoke-direct-empty instruction was introduced to remove the
overhead of calling the empty Object constructor. We now need it
to do some extra work on behalf of object construction, so it's
appropriate to change the instruction name to match the role it
fills rather than the more general role it was hoped to fill.
No functional changes.
Bug 3342343
Change-Id: I65dd6a2c00c99581c9a19b16fe193b70642c8fbb
Diffstat (limited to 'vm/compiler/codegen/arm/CodegenDriver.c')
| -rw-r--r-- | vm/compiler/codegen/arm/CodegenDriver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/compiler/codegen/arm/CodegenDriver.c b/vm/compiler/codegen/arm/CodegenDriver.c index 74f648bcb..7049e49da 100644 --- a/vm/compiler/codegen/arm/CodegenDriver.c +++ b/vm/compiler/codegen/arm/CodegenDriver.c @@ -3222,7 +3222,7 @@ static bool handleFmt35c_3rc_5rc(CompilationUnit *cUnit, MIR *mir, break; } /* NOP */ - case OP_INVOKE_DIRECT_EMPTY: { + case OP_INVOKE_OBJECT_INIT: { if (gDvmJit.methodTraceSupport) genInterpSingleStep(cUnit, mir); break; |
