summaryrefslogtreecommitdiff
path: root/compiler/optimizing/code_generator.h
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2018-06-14 10:01:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-06-14 10:01:05 +0000
commit60204d2f1710acdea0294eba242ecbcb01867730 (patch)
tree4154f14b139d62ddc806695b981b102e47039d46 /compiler/optimizing/code_generator.h
parent7a3e7833c44e76e1e0f53104795c89c237c341f0 (diff)
parent50fac06c51864f293c61ff9d0983b82698cf6dac (diff)
Merge "Add Kind column to stack maps."
Diffstat (limited to 'compiler/optimizing/code_generator.h')
-rw-r--r--compiler/optimizing/code_generator.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.h b/compiler/optimizing/code_generator.h
index b3c29aa804..03ae4983d4 100644
--- a/compiler/optimizing/code_generator.h
+++ b/compiler/optimizing/code_generator.h
@@ -323,7 +323,10 @@ class CodeGenerator : public DeletableArenaObject<kArenaAllocCodeGenerator> {
}
// Record native to dex mapping for a suspend point. Required by runtime.
- void RecordPcInfo(HInstruction* instruction, uint32_t dex_pc, SlowPathCode* slow_path = nullptr);
+ void RecordPcInfo(HInstruction* instruction,
+ uint32_t dex_pc,
+ SlowPathCode* slow_path = nullptr,
+ bool native_debug_info = false);
// Check whether we have already recorded mapping at this PC.
bool HasStackMapAtCurrentPc();
// Record extra stack maps if we support native debugging.