summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator.h
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2016-07-25 14:49:51 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-07-25 14:49:51 +0000
commitde4cf16f467b531373560ca6eb785f0f36606aae (patch)
treeae663c4bc03e6805189bd0dc849de1cb2d1f74e0 /compiler/optimizing/code_generator.h
parentc4aa8961819c78a0fb2ed342ed374d4aaeb4255c (diff)
parentdec8f63fdf50815f24efe1c03af64208da15f339 (diff)
Merge "Do not emit stack maps for runtime calls to ReadBarrierMarkRegX."
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r--compiler/optimizing/code_generator.h6
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);
}