diff options
Diffstat (limited to 'compiler/optimizing/code_generator.h')
| -rw-r--r-- | compiler/optimizing/code_generator.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h index 5e6e175c67..2042adef1c 100644 --- a/compiler/optimizing/code_generator.h +++ b/compiler/optimizing/code_generator.h @@ -379,8 +379,14 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> {      return type == Primitive::kPrimNot && !value->IsNullConstant();    } + +  // Perfoms checks pertaining to an InvokeRuntime call.    void ValidateInvokeRuntime(HInstruction* instruction, SlowPathCode* slow_path); +  // Perfoms checks pertaining to an InvokeRuntimeWithoutRecordingPcInfo call. +  static void ValidateInvokeRuntimeWithoutRecordingPcInfo(HInstruction* instruction, +                                                          SlowPathCode* slow_path); +    void AddAllocatedRegister(Location location) {      allocated_registers_.Add(location);    } |