summaryrefslogtreecommitdiffstats
path: root/mozglue/baseprofiler/lul/LulDwarfSummariser.h
blob: 30f1ba23c17357e0e16629824cc4fec121346b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef LulDwarfSummariser_h
#define LulDwarfSummariser_h

#include "LulMainInt.h"

namespace lul {

class Summariser {
 public:
  Summariser(SecMap* aSecMap, uintptr_t aTextBias, void (*aLog)(const char*));

  virtual void Entry(uintptr_t aAddress, uintptr_t aLength);
  virtual void End();

  // Tell the summariser that the value for |aNewReg| at |aAddress| is
  // recovered using the LExpr that can be constructed using the
  // components |how|, |oldReg| and |offset|.  The summariser will
  // inspect the components and may reject them for various reasons,
  // but the hope is that it will find them acceptable and record this
  // rule permanently.
  virtual void Rule(uintptr_t aAddress, int aNewReg, LExprHow how,
                    int16_t oldReg, int64_t offset);

  virtual uint32_t AddPfxInstr(PfxInstr pfxi);

  // Send output to the logging sink, for debugging.
  virtual void Log(const char* str) { mLog(str); }

 private:
  // The SecMap in which we park the finished summaries (RuleSets) and
  // also any PfxInstrs derived from Dwarf expressions.
  SecMap* mSecMap;

  // Running state for the current summary (RuleSet) under construction.
  RuleSet mCurrRules;

  // The start of the address range to which the RuleSet under
  // construction applies.
  uintptr_t mCurrAddr;

  // The highest address, plus one, for which the RuleSet under
  // construction could possibly apply.  If there are no further
  // incoming events then mCurrRules will eventually be emitted
  // as-is, for the range mCurrAddr.. mMax1Addr - 1, if that is
  // nonempty.
  uintptr_t mMax1Addr;

  // The bias value (to add to the SVMAs, to get AVMAs) to be used
  // when adding entries into mSecMap.
  uintptr_t mTextBias;

  // A logging sink, for debugging.
  void (*mLog)(const char* aFmt);
};

}  // namespace lul

#endif  // LulDwarfSummariser_h