diff options
author | David Srbecky <dsrbecky@google.com> | 2015-03-30 14:21:42 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2015-04-01 12:57:10 +0100 |
commit | 6f7158927fee233255f8e96719c374694b10cad3 (patch) | |
tree | 518cef41f4cd9c3119879eb463aa4b67af5f6ff8 /compiler/dex/quick/mips/call_mips.cc | |
parent | ef3456f872539df65c4c88ca346713f74366d803 (diff) | |
download | android_art-6f7158927fee233255f8e96719c374694b10cad3.tar.gz android_art-6f7158927fee233255f8e96719c374694b10cad3.tar.bz2 android_art-6f7158927fee233255f8e96719c374694b10cad3.zip |
Write .debug_line section using the new DWARF library.
Also simplify dex to java mapping and handle mapping
in prologues and epilogues.
Change-Id: I410f06024580f2a8788f2c93fe9bca132805029a
Diffstat (limited to 'compiler/dex/quick/mips/call_mips.cc')
-rw-r--r-- | compiler/dex/quick/mips/call_mips.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/dex/quick/mips/call_mips.cc b/compiler/dex/quick/mips/call_mips.cc index de66b35418..c932df6dc9 100644 --- a/compiler/dex/quick/mips/call_mips.cc +++ b/compiler/dex/quick/mips/call_mips.cc @@ -275,7 +275,6 @@ void MipsMir2Lir::GenEntrySequence(RegLocation* ArgLocs, RegLocation rl_method) */ skip_overflow_check = mir_graph_->MethodIsLeaf() && !FrameNeedsStackCheck(frame_size_, target); - NewLIR0(kPseudoMethodEntry); RegStorage check_reg = AllocPtrSizeTemp(); RegStorage new_sp = AllocPtrSizeTemp(); const RegStorage rs_sp = TargetPtrReg(kSp); @@ -345,7 +344,6 @@ void MipsMir2Lir::GenExitSequence() { LockTemp(TargetPtrReg(kRet0)); LockTemp(TargetPtrReg(kRet1)); - NewLIR0(kPseudoMethodExit); UnSpillCoreRegs(); OpReg(kOpBx, TargetPtrReg(kLr)); } |