diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-15 14:34:01 +0000 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2014-09-15 14:34:01 +0000 |
commit | 7e3652c45c30c1f2f840e6088e24e2db716eaea7 (patch) | |
tree | a6bdb852a5d1337bd095d0ad8eab90f6689aee9e /compiler/optimizing/builder.h | |
parent | 6fbce029fba3ed5da6c36017754ed408e6bcb632 (diff) | |
download | android_art-7e3652c45c30c1f2f840e6088e24e2db716eaea7.tar.gz android_art-7e3652c45c30c1f2f840e6088e24e2db716eaea7.tar.bz2 android_art-7e3652c45c30c1f2f840e6088e24e2db716eaea7.zip |
Revert "Implement suspend checks in new compiler."
This reverts commit 6fbce029fba3ed5da6c36017754ed408e6bcb632.
Change-Id: Ia915c27873b021e658a10212e559095dfc91284e
Diffstat (limited to 'compiler/optimizing/builder.h')
-rw-r--r-- | compiler/optimizing/builder.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index e143786be7..170c42761a 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -54,7 +54,7 @@ class HGraphBuilder : public ValueObject { // Analyzes the dex instruction and adds HInstruction to the graph // to execute that instruction. Returns whether the instruction can // be handled. - bool AnalyzeDexInstruction(const Instruction& instruction, uint32_t dex_offset); + bool AnalyzeDexInstruction(const Instruction& instruction, int32_t dex_offset); // Finds all instructions that start a new block, and populates branch_targets_ with // the newly created blocks. @@ -70,7 +70,6 @@ class HGraphBuilder : public ValueObject { HLocal* GetLocalAt(int register_index) const; void UpdateLocal(int register_index, HInstruction* instruction) const; HInstruction* LoadLocal(int register_index, Primitive::Type type) const; - void PotentiallyAddSuspendCheck(int32_t target_offset, uint32_t dex_offset); // Temporarily returns whether the compiler supports the parameters // of the method. |