-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBNInstructionTextLine.cs
More file actions
76 lines (63 loc) · 2.11 KB
/
Copy pathBNInstructionTextLine.cs
File metadata and controls
76 lines (63 loc) · 2.11 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
using Microsoft.Win32.SafeHandles;
namespace BinaryNinja
{
[StructLayout(LayoutKind.Sequential)]
internal unsafe struct BNInstructionTextLine
{
/// <summary>
/// BNInstructionTextToken* tokens
/// </summary>
public IntPtr tokens;
/// <summary>
/// uint64_t count
/// </summary>
public ulong count;
}
public sealed class InstructionTextLine
{
public InstructionTextToken[] Tokens { get; } = Array.Empty<InstructionTextToken>();
// The virtual address of the first byte of the instruction this line disassembles. Python's
// Function.instructions / BinaryView.instructions generators yield (tokens, addr) per
// instruction; this field carries that address so consumers do not lose it. It is 0 when the
// line was not produced by an address-walking generator (e.g. synthesized token lists).
public ulong Address { get; } = 0;
// The byte length of the instruction this line disassembles. Python's
// BasicBlock.__getitem__ (basicblock.py:210) yields (tokens, size) per instruction, so the
// size is as much a part of an instruction's identity as its address. It is 0 when the line
// was not produced by an address-walking generator (e.g. synthesized token lists); a block's
// last instruction has no successor, so its size cannot otherwise be recovered from
// consecutive addresses.
public ulong ByteSize { get; } = 0;
public InstructionTextLine()
{
}
public InstructionTextLine(InstructionTextToken[] tokens)
{
this.Tokens = tokens;
}
public InstructionTextLine(InstructionTextToken[] tokens, ulong address)
{
this.Tokens = tokens;
this.Address = address;
}
public InstructionTextLine(InstructionTextToken[] tokens, ulong address, ulong byteSize)
{
this.Tokens = tokens;
this.Address = address;
this.ByteSize = byteSize;
}
public override string ToString()
{
StringBuilder builder = new StringBuilder();
foreach (InstructionTextToken token in Tokens)
{
builder.Append(token.Text);
}
return builder.ToString();
}
}
}