aboutsummaryrefslogtreecommitdiff
path: root/vm/compiler/codegen/mips/CodegenCommon.cpp
diff options
context:
space:
mode:
authorRaghu Gandham <raghu@mips.com>2012-07-30 14:46:12 -0700
committerElliott Hughes <enh@google.com>2012-07-31 13:52:22 -0700
commitfc3b0c4ba9e0ecabb0f6df1ceb6a3eb69da07c7b (patch)
tree04deb7c81980a61e598da95bd73c19e19710ec91 /vm/compiler/codegen/mips/CodegenCommon.cpp
parent37755063648910ee919c22c3d15cd57092026633 (diff)
Fix the MIPS build:
1. LOG->ALOG conversion 2. Remove Jumbo opcodes support Change-Id: Ifbd1eae2f5e7a1cab5828ebfbdba380ad499abfd
Diffstat (limited to 'vm/compiler/codegen/mips/CodegenCommon.cpp')
-rw-r--r--vm/compiler/codegen/mips/CodegenCommon.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/vm/compiler/codegen/mips/CodegenCommon.cpp b/vm/compiler/codegen/mips/CodegenCommon.cpp
index 287e8c17b..0622fb841 100644
--- a/vm/compiler/codegen/mips/CodegenCommon.cpp
+++ b/vm/compiler/codegen/mips/CodegenCommon.cpp
@@ -64,7 +64,7 @@ static void setMemRefType(MipsLIR *lir, bool isLoad, int memType)
*maskPtr |= ENCODE_MUST_NOT_ALIAS;
break;
default:
- LOGE("Jit: invalid memref kind - %d", memType);
+ ALOGE("Jit: invalid memref kind - %d", memType);
assert(0); // Bail if debug build, set worst-case in the field
*maskPtr |= ENCODE_ALL;
}
@@ -310,7 +310,7 @@ static MipsLIR *newLIR3(CompilationUnit *cUnit, MipsOpCode opcode,
{
MipsLIR *insn = (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true);
if (!(EncodingMap[opcode].flags & IS_TERTIARY_OP)) {
- LOGE("Bad LIR3: %s[%d]",EncodingMap[opcode].name,opcode);
+ ALOGE("Bad LIR3: %s[%d]",EncodingMap[opcode].name,opcode);
}
assert(isPseudoOpCode(opcode) ||
(EncodingMap[opcode].flags & IS_TERTIARY_OP));