diff options
author | 2022-09-06 16:15:49 +0000 | |
---|---|---|
committer | 2022-09-06 18:05:48 +0000 | |
commit | 37fe26288aaacae0f26873131dd92704796e09ec (patch) | |
tree | 1b48127108019126390310fae57a553807830683 /compiler/optimizing/code_generator.h | |
parent | 0c8b0c159db65db503ada4d6ae1bc9a70adcefc9 (diff) |
Revert "Add an environment to the beginning of catch blocks"
This reverts commit f976aa822dd35496e4e936b5802af0d53d39ac95.
Reason for revert: breaking some tests https://ci.chromium.org/ui/p/art/builders/ci/angler-armv8-ndebug/3244/blamelist
Change-Id: I5c2732e81bef8a7e83b661b1b947d7c079994c1b
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 6b85aaa880..de247a98b9 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -846,11 +846,8 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> { void BlockIfInRegister(Location location, bool is_out = false) const; void EmitEnvironment(HEnvironment* environment, SlowPathCode* slow_path, - bool needs_vreg_info = true, - bool is_for_catch_handler = false, - bool innermost_environment = true); - void EmitVRegInfo(HEnvironment* environment, SlowPathCode* slow_path, bool is_for_catch_handler); - void EmitVRegInfoOnlyCatchPhis(HEnvironment* environment); + bool needs_vreg_info = true); + void EmitVRegInfo(HEnvironment* environment, SlowPathCode* slow_path); static void PrepareCriticalNativeArgumentMoves( HInvokeStaticOrDirect* invoke, |