Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Side by Side Diff: syzygy/instrument/transforms/filler_transform.h

Issue 1169603003: [Syzygy Instrumenter] Add FillerTransform. (Closed) Base URL: https://code.google.com/p/syzygy.git@master
Patch Set: Sync. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « syzygy/instrument/instrument.gyp ('k') | syzygy/instrument/transforms/filler_transform.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2015 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 //
15 // Declaration of the filler instrumentation transform. This instruments a given
16 // list of functions by injecting NOP fillers at various places.
17
18 #ifndef SYZYGY_INSTRUMENT_TRANSFORMS_FILLER_TRANSFORM_H_
19 #define SYZYGY_INSTRUMENT_TRANSFORMS_FILLER_TRANSFORM_H_
20
21 #include <map>
22 #include <string>
23 #include <vector>
24
25 #include "base/macros.h"
26 #include "base/files/file_path.h"
27 #include "syzygy/block_graph/basic_block.h"
28 #include "syzygy/block_graph/block_graph.h"
29 #include "syzygy/block_graph/transforms/iterative_transform.h"
30 #include "syzygy/block_graph/transforms/named_transform.h"
31
32 using block_graph::TransformPolicyInterface;
33
34 namespace instrument {
35 namespace transforms {
36
37 // A class to transform subgraph by injecting NOP fillers to basic code blocks.
38 class FillerBasicBlockTransform
39 : public block_graph::transforms::NamedBasicBlockSubGraphTransformImpl<
40 FillerBasicBlockTransform> {
41 public:
42 typedef block_graph::BasicBlock BasicBlock;
43 typedef block_graph::BasicBlockSubGraph BasicBlockSubGraph;
44 typedef block_graph::BasicCodeBlock BasicCodeBlock;
45 typedef block_graph::BlockGraph BlockGraph;
46 typedef block_graph::TransformPolicyInterface TransformPolicyInterface;
47 typedef BlockGraph::Block Block;
48
49 // NOP sizes that can be realized with a single instruction. We disallow
50 // multi-instruction NOPs to ensure consistent instruction indexes after NOP
51 // injection.
52 enum NopSizes {
53 NOP1 = 1,
54 NOP2,
55 NOP3,
56 NOP4,
57 NOP5,
58 NOP6,
59 NOP7,
60 NOP8,
61 NOP9,
62 NOP10,
63 NOP11,
64 };
65
66 // A map from instruction indices to NOP sizes. For example,
67 // {1: NOP3, 3: NOP2, 4: NOP5} specifies a transformation that takes
68 // instruction sequence "ABCDE" to "AXBYZCDE", where "X" is the 3-byte NOP,
69 // "Y" is the 2-byte NOP, and "Z" is the 5-byte NOP.
70 typedef const std::map<size_t, NopSizes> NopSpec;
71
72 FillerBasicBlockTransform()
73 : debug_friendly_(false) { }
74 virtual ~FillerBasicBlockTransform() { }
75
76 // For NamedBlockGraphTransformImpl.
77 static const char kTransformName[];
78
79 // @name Accessors and mutators.
80 // @{
81 bool debug_friendly() const { return debug_friendly_; }
82 void set_debug_friendly(bool flag) { debug_friendly_ = flag; }
83 // @}
84
85 // Injects NOP into @p instruction. @p nop_spec specifies post-injection
86 // instruction indices and sizes of NOPs. We do not inject beyond the last
87 // instruction.
88 static void InjectNop(const NopSpec& nop_spec,
89 bool debug_friendly,
90 BasicBlock::Instructions* instructions);
91
92 // @name BasicBlockSubGraphTransformInterface implementation.
93 // @{
94 // Applies the filler transform. Specifically, visits every basic code block
95 // in @p basic_block_subgraph and injects NOP at various places.
96 bool TransformBasicBlockSubGraph(
97 const TransformPolicyInterface* policy,
98 BlockGraph* block_graph,
99 BasicBlockSubGraph* basic_block_subgraph) override;
100 // @}
101
102 private:
103 // Activate the overwriting of source range for created instructions.
104 bool debug_friendly_;
105
106 DISALLOW_COPY_AND_ASSIGN(FillerBasicBlockTransform);
107 };
108
109 // A class to apply filler transform, which injects NOPs to basic code blocks
110 // in a given list of decorated function names.
111 class FillerTransform
112 : public block_graph::transforms::IterativeTransformImpl<FillerTransform> {
113 public:
114 typedef block_graph::BasicBlockSubGraph BasicBlockSubGraph;
115 typedef block_graph::BlockGraph BlockGraph;
116 typedef BlockGraph::Block Block;
117
118 explicit FillerTransform(const std::vector<std::string>& target_list);
119 virtual ~FillerTransform() { }
120
121 // Accessors
122 // @{
123 size_t num_targets_updated() const { return num_targets_updated_; }
124 // @}
125
126 // For NamedBlockGraphTransformImpl.
127 static const char kTransformName[];
128
129 // @name Accessors and mutators.
130 // @{
131 bool debug_friendly() const { return debug_friendly_; }
132 void set_debug_friendly(bool flag) { debug_friendly_ = flag; }
133 // @}
134
135 protected:
136 // Returns whether @p block is a target.
137 bool ShouldProcessBlock(Block* block) const;
138
139 // Verifies that all targets were found, and displays warning if not.
140 void CheckAllTargetsFound() const;
141
142 // @name IterativeTransformImpl implementation.
143 // @{
144 bool PreBlockGraphIteration(const TransformPolicyInterface* policy,
145 BlockGraph* block_graph,
146 Block* header_block);
147 bool OnBlock(const TransformPolicyInterface* policy,
148 BlockGraph* block_graph,
149 Block* block);
150 bool PostBlockGraphIteration(const TransformPolicyInterface* policy,
151 BlockGraph* block_graph,
152 Block* header_block);
153 // @}
154
155 private:
156 friend NamedBlockGraphTransformImpl<FillerTransform>;
157 friend IterativeTransformImpl<FillerTransform>;
158
159 // Activate the overwriting of source range for created instructions.
160 bool debug_friendly_;
161
162 // Names of targets, maps to whether the target was seen.
163 std::map<std::string, bool> target_names_;
164
165 // Counters used by CheckAllTargetsFound.
166 // @{
167 size_t num_blocks_;
168 size_t num_code_blocks_;
169 size_t num_targets_updated_;
170 // @}
171
172 DISALLOW_COPY_AND_ASSIGN(FillerTransform);
173 };
174
175 } // namespace transforms
176 } // namespace instrument
177
178 #endif // SYZYGY_INSTRUMENT_TRANSFORMS_FILLER_TRANSFORM_H_
OLDNEW
« no previous file with comments | « syzygy/instrument/instrument.gyp ('k') | syzygy/instrument/transforms/filler_transform.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698