diff options
author | Alexandre Rames <alexandre.rames@linaro.org> | 2015-06-19 14:47:01 +0100 |
---|---|---|
committer | Alexandre Rames <alexandre.rames@linaro.org> | 2015-06-19 14:47:01 +0100 |
commit | 9931f319cf86c56c2855d800339a3410697633a6 (patch) | |
tree | 94e98f4a670d9bded4ed3fbc194c31e4c733d198 /compiler/optimizing/code_generator.h | |
parent | edb83c606e034d76bed1331f34cdc435df47bb95 (diff) |
Opt compiler: Add a description to slow paths.
Change-Id: I22160d90de3fe0ab3e6a2acc440bda8daa00e0f0
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r-- | compiler/optimizing/code_generator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 5b0abd76b3..b1f1674891 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -97,6 +97,8 @@ class SlowPathCode : public ArenaObject<kArenaAllocSlowPaths> { return saved_fpu_stack_offsets_[reg]; } + virtual const char* GetDescription() const = 0; + protected: static constexpr size_t kMaximumNumberOfExpectedRegisters = 32; static constexpr uint32_t kRegisterNotSaved = -1; |