File: line_state_machine.h

package info (click to toggle)
autofdo 0.18-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 92,568 kB
  • sloc: cpp: 26,830; sh: 12,538; makefile: 344; ansic: 134; python: 95
file content (52 lines) | stat: -rw-r--r-- 1,498 bytes parent folder | download | duplicates (4)
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
// Copyright 2014 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#ifndef AUTOFDO_SYMBOLIZE_LINE_STATE_MACHINE_H__
#define AUTOFDO_SYMBOLIZE_LINE_STATE_MACHINE_H__

namespace autofdo {

// This is the format of a DWARF2/3 line state machine that we process
// opcodes using.  There is no need for anything outside the lineinfo
// processor to know how this works.
struct LineStateMachine {
  void Reset(bool default_is_stmt) {
    file_num = 1;
    address = 0;
    line_num = 1;
    column_num = 0;
    discriminator = 0;
    is_stmt = default_is_stmt;
    basic_block = false;
    end_sequence = false;
    context = 0;
    subprog_num = 0;
  }

  uint64 address;
  uint64 line_num;
  uint32 file_num;
  uint32 column_num;
  uint32 discriminator;
  uint32 context;
  uint32 subprog_num;
  bool is_stmt;  // stmt means statement.
  bool basic_block;
  bool end_sequence;
};

}  // namespace autofdo


#endif  // AUTOFDO_SYMBOLIZE_LINE_STATE_MACHINE_H__