diff options
| author | 2014-04-01 01:07:45 +0000 | |
|---|---|---|
| committer | 2014-04-01 01:07:45 +0000 | |
| commit | 81ed34e686532cebc1e17a273110decf0dd24e81 (patch) | |
| tree | 885a781e5f8bd852e2c1615108ae7b17576a6567 /compiler/dex/quick/codegen_util.cc | |
| parent | cfd5acf281b0c509f86b13d73c6a8dfa3ea9922c (diff) | |
| parent | f943914730db8ad2ff03d49a2cacd31885d08fd7 (diff) | |
Merge "Implement implicit stack overflow checks"
Diffstat (limited to 'compiler/dex/quick/codegen_util.cc')
| -rw-r--r-- | compiler/dex/quick/codegen_util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/dex/quick/codegen_util.cc b/compiler/dex/quick/codegen_util.cc index 717ad86a75..4c6c7a45b4 100644 --- a/compiler/dex/quick/codegen_util.cc +++ b/compiler/dex/quick/codegen_util.cc @@ -702,7 +702,8 @@ void Mir2Lir::CreateNativeGcMap() { uint32_t native_offset = it.NativePcOffset(); uint32_t dex_pc = it.DexPc(); const uint8_t* references = dex_gc_map.FindBitMap(dex_pc, false); - CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc; + CHECK(references != NULL) << "Missing ref for dex pc 0x" << std::hex << dex_pc << + ": " << PrettyMethod(cu_->method_idx, *cu_->dex_file); native_gc_map_builder.AddEntry(native_offset, references); } } |