about summary refs log tree commit diff stats
path: root/036labels.cc
blob: 2f8a25e823a208e1e8f0c5159b620a38d8bcee26 (plain) (blame)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highli
//: Labels are defined by ending names with a ':'. This layer will compute
//: displacements for labels, and compute the offset for instructions using them.
//:
//: We won't check this, but our convention will be that jump targets will
//: start with a '$', while functions will not. Function names will never be
//: jumped to, and jump targets will never be called.

//: We're introducing non-number names for the first time, so it's worth
//: laying down some ground rules all transforms will follow, so things don't
//: get too confusing:
//:   - if it starts with a digit, it's treated as a number. If it can't be
//:     parsed as hex it will raise an error.
//:   - if it starts with '-' it's treated as a number.
//:   - if it starts with '0x' it's treated as a number.
//:   - if it's two characters long, it can't be a name. Either it's a hex
//:     byte, or it raises an error.
//: That's it. Names can start with any non-digit that isn't a dash. They can
//: be a single character long. 'a' is not a hex number, it's a variable.
//: Later layers may add more conventions partitioning the space of names. But
//: the above rules will remain inviolate.

//: One special label is 'Entry', the address to start running the program at.
//: It can be non-unique; the last declaration overrides earlier ones.
//: It must exist in a program. Otherwise we don't know where to start running
//: programs.

void test_Entry_label() {
  run(
      "== code 0x1\n"
      "05 0x0d0c0b0a/imm32\n"
      "Entry:\n"
      "05 0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "run: 0x00000006 opcode: 05\n"
  );
  CHECK_TRACE_DOESNT_CONTAIN("run: 0x00000001 opcode: 05");
}

:(before "End looks_like_hex_int(s) Detectors")
if (SIZE(s) == 2) return true;

:(code)
void test_pack_immediate_ignores_single_byte_nondigit_operand() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "b9/copy  a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: packing instruction 'b9/copy a/imm32'\n"
      // no change (we're just not printing metadata to the trace)
      "transform: instruction after packing: 'b9 a'\n"
  );
}

void test_pack_immediate_ignores_3_hex_digit_operand() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "b9/copy  aaa/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: packing instruction 'b9/copy aaa/imm32'\n"
      // no change (we're just not printing metadata to the trace)
      "transform: instruction after packing: 'b9 aaa'\n"
  );
}

void test_pack_immediate_ignores_non_hex_operand() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "b9/copy xxx/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: packing instruction 'b9/copy xxx/imm32'\n"
      // no change (we're just not printing metadata to the trace)
      "transform: instruction after packing: 'b9 xxx'\n"
  );
}

//: a helper we'll find handy later
void check_valid_name(const string& s) {
  if (s.empty()) {
    raise << "empty name!\n" << end();
    return;
  }
  if (s.at(0) == '-')
    raise << "'" << s << "' starts with '-', which can be confused with a negative number; use a different name\n" << end();
  if (s.substr(0, 2) == "0x") {
    raise << "'" << s << "' looks like a hex number; use a different name\n" << end();
    return;
  }
  if (isdigit(s.at(0)))
    raise << "'" << s << "' starts with a digit, and so can be confused with a number; use a different name.\n" << end();
  if (SIZE(s) == 2)
    raise << "'" << s << "' is two characters long, which can look like raw hex bytes at a glance; use a different name\n" << end();
}

//: Now that that's done, let's start using names as labels.

void test_map_label() {
  transform(
      "== code 0x1\n"
      "loop:\n"
      "  05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: label 'loop' is at address 1\n"
  );
}

:(before "End Transforms")
Transform.push_back(rewrite_labels);
:(code)
void rewrite_labels(program& p) {
  trace(3, "transform") << "-- rewrite labels" << end();
  if (p.segments.empty()) return;
  segment& code = *find(p, "code");
  map<string, int32_t> byte_index;  // values are unsigned, but we're going to do subtractions on them so they need to fit in 31 bits
  compute_byte_indices_for_labels(code, byte_index);
  if (trace_contains_errors()) return;
  drop_labels(code);
  if (trace_contains_errors()) return;
  replace_labels_with_displacements(code, byte_index);
  if (contains_key(byte_index, "Entry"))
    p.entry = code.start + get(byte_index, "Entry");
}

void compute_byte_indices_for_labels(const segment& code, map<string, int32_t>& byte_index) {
  int current_byte = 0;
  for (int i = 0;  i < SIZE(code.lines);  ++i) {
    const line& inst = code.lines.at(i);
    if (Source_lines_file.is_open() && !inst.original.empty() && /*not a label*/ *inst.words.at(0).data.rbegin() != ':')
      Source_lines_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << inst.original << '\n';
    for (int j = 0;  j < SIZE(inst.words);  ++j) {
      const word& curr = inst.words.at(j);
      // hack: if we have any operand metadata left after previous transforms,
      // deduce its size
      // Maybe we should just move this transform to before instruction
      // packing, and deduce the size of *all* operands. But then we'll also
      // have to deal with bitfields.
      if (has_operand_metadata(curr, "disp32") || has_operand_metadata(curr, "imm32")) {
        if (*curr.data.rbegin() == ':')
          raise << "'" << to_string(inst) << "': don't use ':' when jumping to labels\n" << end();
        current_byte += 4;
      }
      else if (has_operand_metadata(curr, "disp16")) {
        if (*curr.data.rbegin() == ':')
          raise << "'" << to_string(inst) << "': don't use ':' when jumping to labels\n" << end();
        current_byte += 2;
      }
      // automatically handle /disp8 and /imm8 here
      else if (*curr.data.rbegin() != ':') {
        ++current_byte;
      }
      else {
        string label = drop_last(curr.data);
        // ensure labels look sufficiently different from raw hex
        check_valid_name(label);
        if (trace_contains_errors()) return;
        if (contains_any_operand_metadata(curr))
          raise << "'" << to_string(inst) << "': label definition (':') not allowed in operand\n" << end();
        if (j > 0)
          raise << "'" << to_string(inst) << "': labels can only be the first word in a line.\n" << end();
        if (Labels_file.is_open())
          Labels_file << "0x" << HEXWORD << (code.start + current_byte) << ' ' << label << '\n';
        if (contains_key(byte_index, label) && label != "Entry") {
          raise << "duplicate label '" << label << "'\n" << end();
          return;
        }
        put(byte_index, label, current_byte);
        trace(99, "transform") << "label '" << label << "' is at address " << (current_byte+code.start) << end();
        // no modifying current_byte; label definitions won't be in the final binary
      }
    }
  }
}

:(before "End Globals")
bool Dump_debug_info = false;  // currently used only by 'bootstrap translate'
ofstream Labels_file;
ofstream Source_lines_file;
:(before "End Commandline Options")
else if (is_equal(*arg, "--debug")) {
  Dump_debug_info = true;
  // End --debug Settings
}
//: wait to open "labels" for writing until we're sure we aren't trying to read it
:(after "Begin bootstrap translate")
if (Dump_debug_info) {
  cerr << "saving address->label information to 'labels'\n";
  Labels_file.open("labels");
  cerr << "saving address->source information to 'source_lines'\n";
  Source_lines_file.open("source_lines");
}
:(before "End bootstrap translate")
if (Dump_debug_info) {
  Labels_file.close();
  Source_lines_file.close();
}

:(code)
void drop_labels(segment& code) {
  for (int i = 0;  i < SIZE(code.lines);  ++i) {
    line& inst = code.lines.at(i);
    vector<word>::iterator new_end = remove_if(inst.words.begin(), inst.words.end(), is_label);
    inst.words.erase(new_end, inst.words.end());
  }
}

bool is_label(const word& w) {
  return *w.data.rbegin() == ':';
}

void replace_labels_with_displacements(segment& code, const map<string, int32_t>& byte_index) {
  int32_t byte_index_next_instruction_starts_at = 0;
  for (int i = 0;  i < SIZE(code.lines);  ++i) {
    line& inst = code.lines.at(i);
    byte_index_next_instruction_starts_at += num_bytes(inst);
    line new_inst;
    for (int j = 0;  j < SIZE(inst.words);  ++j) {
      const word& curr = inst.words.at(j);
      if (contains_key(byte_index, curr.data)) {
        int32_t displacement = static_cast<int32_t>(get(byte_index, curr.data)) - byte_index_next_instruction_starts_at;
        if (has_operand_metadata(curr, "disp8")) {
          if (displacement > 0x7f || displacement < -0x7f)
            raise << "'" << to_string(inst) << "': label too far away for displacement " << std::hex << displacement << " to fit in 8 signed bits\n" << end();
          else
            emit_hex_bytes(new_inst, displacement, 1);
        }
        else if (has_operand_metadata(curr, "disp16")) {
          if (displacement > 0x7fff || displacement < -0x7fff)
            raise << "'" << to_string(inst) << "': label too far away for displacement " << std::hex << displacement << " to fit in 16 signed bits\n" << end();
          else
            emit_hex_bytes(new_inst, displacement, 2);
        }
        else if (has_operand_metadata(curr, "disp32")) {
          emit_hex_bytes(new_inst, displacement, 4);
        } else if (has_operand_metadata(curr, "imm32")) {
          emit_hex_bytes(new_inst, code.start + get(byte_index, curr.data), 4);
        }
      }
      else {
        new_inst.words.push_back(curr);
      }
    }
    inst.words.swap(new_inst.words);
    trace(99, "transform") << "instruction after transform: '" << data_to_string(inst) << "'" << end();
  }
}

string data_to_string(const line& inst) {
  ostringstream out;
  for (int i = 0;  i < SIZE(inst.words);  ++i) {
    if (i > 0) out << ' ';
    out << inst.words.at(i).data;
  }
  return out.str();
}

string drop_last(const string& s) {
  return string(s.begin(), --s.end());
}

//: Label definitions must be the first word on a line. No jumping inside
//: instructions.
//: They should also be the only word on a line.
//: However, you can absolutely have multiple labels map to the same address,
//: as long as they're on separate lines.

void test_multiple_labels_at() {
  transform(
      "== code 0x1\n"
      // address 1
      "loop:\n"
      " $loop2:\n"
      // address 1 (labels take up no space)
      "    05  0x0d0c0b0a/imm32\n"
      // address 6
      "    eb  $loop2/disp8\n"
      // address 8
      "    eb  $loop3/disp8\n"
      // address 0xa
      " $loop3:\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: label 'loop' is at address 1\n"
      "transform: label '$loop2' is at address 1\n"
      "transform: label '$loop3' is at address a\n"
      // first jump is to -7
      "transform: instruction after transform: 'eb f9'\n"
      // second jump is to 0 (fall through)
      "transform: instruction after transform: 'eb 00'\n"
  );
}

void test_loading_label_as_imm32() {
  transform(
      "== code 0x1\n"
      "label:\n"
      "  be/copy-to-ESI  label/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: label 'label' is at address 1\n"
      "transform: instruction after transform: 'be 01 00 00 00'\n"
  );
}

void test_duplicate_label() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "loop:\n"
      "loop:\n"
      "    05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: duplicate label 'loop'\n"
  );
}

void test_label_too_short() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "xz:\n"
      "  05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: 'xz' is two characters long, which can look like raw hex bytes at a glance; use a different name\n"
  );
}

void test_label_hex() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "0xab:\n"
      "  05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: '0xab' looks like a hex number; use a different name\n"
  );
}

void test_label_negative_hex() {
  Hide_errors = true;
  transform(
      "== code 0x1\n"
      "-a:\n"
      "    05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_CONTENTS(
      "error: '-a' starts with '-', which can be confused with a negative number; use a different name\n"
  );
}

//: As said up top, the 'Entry' label is special.
//: It can be non-unique; the last declaration overrides earlier ones.
//: It must exist in a program. Otherwise we don't know where to start running
//: programs.

void test_duplicate_Entry_label() {
  transform(
      "== code 0x1\n"
      "Entry:\n"
      "Entry:\n"
      "    05  0x0d0c0b0a/imm32\n"
  );
  CHECK_TRACE_DOESNT_CONTAIN_ERRORS();
}

// This test could do with some refactoring.
// We're duplicating the flow inside `bootstrap translate`, but without
// reading/writing files.
// We can't just use run(string) because most of our tests allow programs
// without 'Entry' labels, as a convenience.
void test_programs_without_Entry_label() {
  Hide_errors = true;
  program p;
  istringstream in(
      "== code 0x1\n"
      "05 0x0d0c0b0a/imm32\n"
      "05 0x0d0c0b0a/imm32\n"
  );
  parse(in, p);
  transform(p);
  ostringstream dummy;
  save_elf(p, dummy);
  CHECK_TRACE_CONTENTS(
      "error: no 'Entry' label found\n"
  );
}

//: now that we have labels, we need to adjust segment size computation to
//: ignore them.

void test_segment_size_ignores_labels() {
  transform(
      "== code 0x09000074\n"
      "  05/add  0x0d0c0b0a/imm32\n"  // 5 bytes
      "foo:\n"                        // 0 bytes
      "== data 0x0a000000\n"
      "bar:\n"
      "  00\n"
  );
  CHECK_TRACE_CONTENTS(
      "transform: segment 1 begins at address 0x0a000079\n"
  );
}

:(before "End size_of(word w) Special-cases")
else if (is_label(w))
  return 0;
/span> <span id="L66" class="LineNr"> 66 </span> <span class="Constant">&quot;\n&quot;</span> <span id="L67" class="LineNr"> 67 </span> <span class="Constant">&quot;== Ways to invoke bootstrap\n&quot;</span> <span id="L68" class="LineNr"> 68 </span> <span class="Constant">&quot;- See this message:\n&quot;</span> <span id="L69" class="LineNr"> 69 </span> <span class="Constant">&quot; bootstrap --help\n&quot;</span> <span id="L70" class="LineNr"> 70 </span> <span class="Constant">&quot;- Convert a textual SubX program into a standard ELF binary that you can\n&quot;</span> <span id="L71" class="LineNr"> 71 </span> <span class="Constant">&quot; <a href='011run.cc.html#L82'>run</a> on your computer:\n&quot;</span> <span id="L72" class="LineNr"> 72 </span> <span class="Constant">&quot; bootstrap translate input1.subx input2.subx ... -o &lt;output ELF binary&gt;\n&quot;</span> <span id="L73" class="LineNr"> 73 </span> <span class="Constant">&quot;- Run a SubX binary using SubX itself (for better error messages):\n&quot;</span> <span id="L74" class="LineNr"> 74 </span> <span class="Constant">&quot; bootstrap <a href='011run.cc.html#L82'>run</a> &lt;ELF binary&gt;\n&quot;</span> <span id="L75" class="LineNr"> 75 </span> <span class="Constant">&quot;- Run all bootstrap's unit tests:\n&quot;</span> <span id="L76" class="LineNr"> 76 </span> <span class="Constant">&quot; bootstrap test\n&quot;</span> <span id="L77" class="LineNr"> 77 </span> <span class="Constant">&quot;- Run a single unit test:\n&quot;</span> <span id="L78" class="LineNr"> 78 </span> <span class="Constant">&quot; bootstrap test &lt;test name&gt;\n&quot;</span> <span id="L79" class="LineNr"> 79 </span> <span class="Constant">&quot; e.g. bootstrap test test_copy_imm32_to_EAX\n&quot;</span> <span id="L80" class="LineNr"> 80 </span> <span class="Constant">&quot;\n&quot;</span> <span id="L81" class="LineNr"> 81 </span> <span class="Constant">&quot;== Debugging aids\n&quot;</span> <span id="L82" class="LineNr"> 82 </span> <span class="Constant">&quot;- Add '--trace' to any of these commands to save a <a href='003trace.cc.html#L96'>trace</a> to disk at the end.\n&quot;</span> <span id="L83" class="LineNr"> 83 </span> <span class="Constant">&quot; This can <a href='011run.cc.html#L82'>run</a> out of memory for long-running commands.\n&quot;</span> <span id="L84" class="LineNr"> 84 </span> <span class="Constant">&quot;- Add '--debug' to add information to traces. 'bootstrap --debug translate'\n&quot;</span> <span id="L85" class="LineNr"> 85 </span> <span class="Constant">&quot; will save metadata to disk that 'bootstrap --trace run' uses to make traces\n&quot;</span> <span id="L86" class="LineNr"> 86 </span> <span class="Constant">&quot; more informative.\n&quot;</span> <span id="L87" class="LineNr"> 87 </span> <span class="Constant">&quot;- Add '--dump --trace' to emit a <a href='003trace.cc.html#L96'>trace</a> incrementally to stderr.\n&quot;</span> <span id="L88" class="LineNr"> 88 </span> <span class="Constant">&quot; This approach will work even for long-running programs.\n&quot;</span> <span id="L89" class="LineNr"> 89 </span> <span class="Constant">&quot; (Though the combination of flags is counter-intuitive and can probably\n&quot;</span> <span id="L90" class="LineNr"> 90 </span> <span class="Constant">&quot; be improved.)\n&quot;</span> <span id="L91" class="LineNr"> 91 </span> <span class="Constant">&quot;\n&quot;</span> <span id="L92" class="LineNr"> 92 </span> <span class="Constant">&quot;Options starting with '--' must always come before any other arguments.\n&quot;</span> <span id="L93" class="LineNr"> 93 </span> <span class="Constant">&quot;\n&quot;</span> <span id="L94" class="LineNr"> 94 </span> <span class="Constant">&quot;To start learning how to write SubX programs, see Readme.md (particularly\n&quot;</span> <span id="L95" class="LineNr"> 95 </span> <span class="Constant">&quot;the section on the x86 instruction set) and then <a href='011run.cc.html#L82'>run</a>:\n&quot;</span> <span id="L96" class="LineNr"> 96 </span> <span class="Constant">&quot; bootstrap help\n&quot;</span> <span id="L97" class="LineNr"> 97 </span> <span class="Delimiter">);</span> <span id="L98" class="LineNr"> 98 </span> <span class="Comment">// End Help Texts</span> <span id="L99" class="LineNr"> 99 </span><span class="Delimiter">}</span> <span id="L100" class="LineNr">100 </span> <span id="L101" class="LineNr">101 </span><span class="Delimiter">:(code)</span> <span id="L102" class="LineNr">102 </span><span class="Normal">bool</span> <a href='001help.cc.html#L102'>is_equal</a><span class="Delimiter">(</span><span class="Normal">char</span>* s<span class="Delimiter">,</span> <span class="Normal">const</span> <span class="Normal">char</span>* lit<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L103" class="LineNr">103 </span> <span class="Identifier">return</span> strncmp<span class="Delimiter">(</span>s<span class="Delimiter">,</span> lit<span class="Delimiter">,</span> strlen<span class="Delimiter">(</span>lit<span class="Delimiter">))</span> == <span class="Constant">0</span><span class="Delimiter">;</span> <span id="L104" class="LineNr">104 </span><span class="Delimiter">}</span> <span id="L105" class="LineNr">105 </span> <span id="L106" class="LineNr">106 </span><span class="Normal">bool</span> <a href='001help.cc.html#L106'>starts_with</a><span class="Delimiter">(</span><span class="Normal">const</span> string&amp; s<span class="Delimiter">,</span> <span class="Normal">const</span> string&amp; pat<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L107" class="LineNr">107 </span> string::const_iterator a=s<span class="Delimiter">.</span>begin<span class="Delimiter">(),</span> b=pat<span class="Delimiter">.</span>begin<span class="Delimiter">();</span> <span id="L108" class="LineNr">108 </span> <span class="Normal">for</span> <span class="Delimiter">(</span><span class="Comment">/*</span><span class="Comment">nada</span><span class="Comment">*/</span><span class="Delimiter">;</span> a!=s<span class="Delimiter">.</span>end<span class="Delimiter">()</span> &amp;&amp; b!=pat<span class="Delimiter">.</span>end<span class="Delimiter">();</span> ++a<span class="Delimiter">,</span> ++b<span class="Delimiter">)</span> <span id="L109" class="LineNr">109 </span> <span class="Normal">if</span> <span class="Delimiter">(</span>*a != *b<span class="Delimiter">)</span> <span class="Identifier">return</span> <span class="Constant">false</span><span class="Delimiter">;</span> <span id="L110" class="LineNr">110 </span> <span class="Identifier">return</span> b == pat<span class="Delimiter">.</span>end<span class="Delimiter">();</span> <span id="L111" class="LineNr">111 </span><span class="Delimiter">}</span> <span id="L112" class="LineNr">112 </span> <span id="L113" class="LineNr">113 </span><span class="Comment">//: I'll throw some style conventions here for want of a better place for them.</span> <span id="L114" class="LineNr">114 </span><span class="Comment">//: As a rule I hate style guides. Do what you want, that's my motto. But since</span> <span id="L115" class="LineNr">115 </span><span class="Comment">//: we're dealing with C/C++, the one big thing we want to avoid is undefined</span> <span id="L116" class="LineNr">116 </span><span class="Comment">//: behavior. If a compiler ever encounters undefined behavior it can make</span> <span id="L117" class="LineNr">117 </span><span class="Comment">//: your program do anything it wants.</span> <span id="L118" class="LineNr">118 </span><span class="Comment">//:</span> <span id="L119" class="LineNr">119 </span><span class="Comment">//: For reference, my checklist of undefined behaviors to watch out for:</span> <span id="L120" class="LineNr">120 </span><span class="Comment">//: out-of-bounds access</span> <span id="L121" class="LineNr">121 </span><span class="Comment">//: uninitialized variables</span> <span id="L122" class="LineNr">122 </span><span class="Comment">//: use after free</span> <span id="L123" class="LineNr">123 </span><span class="Comment">//: dereferencing invalid pointers: null, a new of size 0, others</span> <span id="L124" class="LineNr">124 </span><span class="Comment">//:</span> <span id="L125" class="LineNr">125 </span><span class="Comment">//: casting a large number to a type too small to hold it</span> <span id="L126" class="LineNr">126 </span><span class="Comment">//:</span> <span id="L127" class="LineNr">127 </span><span class="Comment">//: integer overflow</span> <span id="L128" class="LineNr">128 </span><span class="Comment">//: division by zero and other undefined expressions</span> <span id="L129" class="LineNr">129 </span><span class="Comment">//: left-shift by negative count</span> <span id="L130" class="LineNr">130 </span><span class="Comment">//: shifting values by more than or equal to the number of bits they contain</span> <span id="L131" class="LineNr">131 </span><span class="Comment">//: bitwise operations on signed numbers</span> <span id="L132" class="LineNr">132 </span><span class="Comment">//:</span> <span id="L133" class="LineNr">133 </span><span class="Comment">//: Converting pointers to types of different alignment requirements</span> <span id="L134" class="LineNr">134 </span><span class="Comment">//: T* -&gt; void* -&gt; T*: defined</span> <span id="L135" class="LineNr">135 </span><span class="Comment">//: T* -&gt; U* -&gt; T*: defined if non-function pointers and alignment requirements are same</span> <span id="L136" class="LineNr">136 </span><span class="Comment">//: function pointers may be cast to other function pointers</span> <span id="L137" class="LineNr">137 </span><span class="Comment">//:</span> <span id="L138" class="LineNr">138 </span><span class="Comment">//: Casting a numeric value into a value that can't be represented by the target type (either directly or via static_cast)</span> <span id="L139" class="LineNr">139 </span><span class="Comment">//:</span> <span id="L140" class="LineNr">140 </span><span class="Comment">//: To guard against these, some conventions:</span> <span id="L141" class="LineNr">141 </span><span class="Comment">//:</span> <span id="L142" class="LineNr">142 </span><span class="Comment">//: 0. Initialize all primitive variables in functions and constructors.</span> <span id="L143" class="LineNr">143 </span><span class="Comment">//:</span> <span id="L144" class="LineNr">144 </span><span class="Comment">//: 1. Minimize use of pointers and pointer arithmetic. Avoid 'new' and</span> <span id="L145" class="LineNr">145 </span><span class="Comment">//: 'delete' as far as possible. Rely on STL to perform memory management to</span> <span id="L146" class="LineNr">146 </span><span class="Comment">//: avoid use-after-free issues (and memory leaks).</span> <span id="L147" class="LineNr">147 </span><span class="Comment">//:</span> <span id="L148" class="LineNr">148 </span><span class="Comment">//: 2. Avoid naked arrays to avoid out-of-bounds access. Never use operator[]</span> <span id="L149" class="LineNr">149 </span><span class="Comment">//: except with map. Use at() with STL vectors and so on.</span> <span id="L150" class="LineNr">150 </span><span class="Comment">//:</span> <span id="L151" class="LineNr">151 </span><span class="Comment">//: 3. Valgrind all the things.</span> <span id="L152" class="LineNr">152 </span><span class="Comment">//:</span> <span id="L153" class="LineNr">153 </span><span class="Comment">//: 4. Avoid unsigned numbers. Not strictly an undefined-behavior issue, but</span> <span id="L154" class="LineNr">154 </span><span class="Comment">//: the extra range doesn't matter, and it's one less confusing category of</span> <span id="L155" class="LineNr">155 </span><span class="Comment">//: interaction gotchas to worry about.</span> <span id="L156" class="LineNr">156 </span><span class="Comment">//:</span> <span id="L157" class="LineNr">157 </span><span class="Comment">//: Corollary: don't use the size() method on containers, since it returns an</span> <span id="L158" class="LineNr">158 </span><span class="Comment">//: unsigned and that'll cause warnings about mixing signed and unsigned,</span> <span id="L159" class="LineNr">159 </span><span class="Comment">//: yadda-yadda. Instead use this macro below to perform an unsafe cast to</span> <span id="L160" class="LineNr">160 </span><span class="Comment">//: signed. We'll just give up immediately if a container's ever too large.</span> <span id="L161" class="LineNr">161 </span><span class="Comment">//: Basically, Mu is not concerned about this being a little slower than it</span> <span id="L162" class="LineNr">162 </span><span class="Comment">//: could be. (<a href="https://gist.github.com/rygorous/e0f055bfb74e3d5f0af20690759de5a7)">https://gist.github.com/rygorous/e0f055bfb74e3d5f0af20690759de5a7)</a></span> <span id="L163" class="LineNr">163 </span><span class="Comment">//:</span> <span id="L164" class="LineNr">164 </span><span class="Comment">//: Addendum to corollary: We're going to uniformly use int everywhere, to</span> <span id="L165" class="LineNr">165 </span><span class="Comment">//: indicate that we're oblivious to number size, and since Clang on 32-bit</span> <span id="L166" class="LineNr">166 </span><span class="Comment">//: platforms doesn't yet support multiplication over 64-bit integers, and</span> <span id="L167" class="LineNr">167 </span><span class="Comment">//: since multiplying two integers seems like a more common situation to end</span> <span id="L168" class="LineNr">168 </span><span class="Comment">//: up in than integer overflow.</span> <span id="L169" class="LineNr">169 </span><span class="Delimiter">:(before &quot;End Includes&quot;)</span> <span id="L170" class="LineNr">170 </span><span class="PreProc">#define SIZE(</span><span class="Special">X</span><span class="PreProc">) (assert((</span><span class="Special">X</span><span class="PreProc">)</span><span class="Delimiter">.</span><span class="PreProc">size() &lt; (</span><span class="Constant">1LL</span><span class="PreProc">&lt;&lt;(</span><span class="Normal">sizeof</span><span class="PreProc">(</span><span class="Normal">int</span><span class="PreProc">)*</span><span class="Constant">8</span><span class="PreProc">-</span><span class="Constant">2</span><span class="PreProc">)))</span><span class="Delimiter">,</span><span class="PreProc"> </span><span class="Normal">static_cast</span><span class="PreProc">&lt;</span><span class="Normal">int</span><span class="PreProc">&gt;((</span><span class="Special">X</span><span class="PreProc">)</span><span class="Delimiter">.</span><span class="PreProc">size()))</span> <span id="L171" class="LineNr">171 </span> <span id="L172" class="LineNr">172 </span><span class="Comment">//: 5. Integer overflow is guarded against at runtime using the -ftrapv flag</span> <span id="L173" class="LineNr">173 </span><span class="Comment">//: to the compiler, supported by Clang (GCC version only works sometimes:</span> <span id="L174" class="LineNr">174 </span><span class="Comment">//: <a href="http://stackoverflow.com/questions/20851061/how-to-make-gcc-ftrapv-work).">http://stackoverflow.com/questions/20851061/how-to-make-gcc-ftrapv-work).</a></span> <span id="L175" class="LineNr">175 </span><span class="Delimiter">:(before &quot;atexit(<a href='000organization.cc.html#L150'>reset</a>)&quot;)</span> <span id="L176" class="LineNr">176 </span><a href='001help.cc.html#L181'>initialize_signal_handlers</a><span class="Delimiter">();</span> <span class="Comment">// not always necessary, but doesn't hurt</span> <span id="L177" class="LineNr">177 </span><span class="CommentedCode">//? cerr &lt;&lt; INT_MAX+1 &lt;&lt; '\n'; // test overflow</span> <span id="L178" class="LineNr">178 </span><span class="CommentedCode">//? assert(false); // test SIGABRT</span> <span id="L179" class="LineNr">179 </span><span class="Delimiter">:(code)</span> <span id="L180" class="LineNr">180 </span><span class="Comment">// based on <a href="https://spin.atomicobject.com/2013/01/13/exceptions-stack-traces-c">https://spin.atomicobject.com/2013/01/13/exceptions-stack-traces-c</a></span> <span id="L181" class="LineNr">181 </span><span class="Normal">void</span> <a href='001help.cc.html#L181'>initialize_signal_handlers</a><span class="Delimiter">()</span> <span class="Delimiter">{</span> <span id="L182" class="LineNr">182 </span> <span class="Normal">struct</span> sigaction action<span class="Delimiter">;</span> <span id="L183" class="LineNr">183 </span> bzero<span class="Delimiter">(</span>&amp;action<span class="Delimiter">,</span> <span class="Normal">sizeof</span><span class="Delimiter">(</span>action<span class="Delimiter">));</span> <span id="L184" class="LineNr">184 </span> action<span class="Delimiter">.</span>sa_sigaction = <a href='001help.cc.html#L189'>dump_and_exit</a><span class="Delimiter">;</span> <span id="L185" class="LineNr">185 </span> sigemptyset<span class="Delimiter">(</span>&amp;action<span class="Delimiter">.</span>sa_mask<span class="Delimiter">);</span> <span id="L186" class="LineNr">186 </span> sigaction<span class="Delimiter">(</span><span class="Constant">SIGABRT</span><span class="Delimiter">,</span> &amp;action<span class="Delimiter">,</span> <span class="Constant">NULL</span><span class="Delimiter">);</span> <span class="Comment">// assert() failure or integer overflow on linux (with -ftrapv)</span> <span id="L187" class="LineNr">187 </span> sigaction<span class="Delimiter">(</span><span class="Constant">SIGILL</span><span class="Delimiter">,</span> &amp;action<span class="Delimiter">,</span> <span class="Constant">NULL</span><span class="Delimiter">);</span> <span class="Comment">// integer overflow on OS X (with -ftrapv)</span> <span id="L188" class="LineNr">188 </span><span class="Delimiter">}</span> <span id="L189" class="LineNr">189 </span><span class="Normal">void</span> <a href='001help.cc.html#L189'>dump_and_exit</a><span class="Delimiter">(</span><span class="Normal">int</span> sig<span class="Delimiter">,</span> siginfo_t* <span class="Comment">/*</span><span class="Comment">unused</span><span class="Comment">*/</span><span class="Delimiter">,</span> <span class="Normal">void</span>* <span class="Comment">/*</span><span class="Comment">unused</span><span class="Comment">*/</span><span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L190" class="LineNr">190 </span> <span class="Normal">switch</span> <span class="Delimiter">(</span>sig<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L191" class="LineNr">191 </span> <span class="Normal">case</span> <span class="Constant">SIGABRT</span>: <span id="L192" class="LineNr">192 </span> <span class="PreProc">#ifndef __APPLE__</span> <span id="L193" class="LineNr">193 </span> cerr &lt;&lt; <span class="Constant">&quot;SIGABRT: might be an integer overflow if it wasn't an assert() failure\n&quot;</span><span class="Delimiter">;</span> <span id="L194" class="LineNr">194 </span> _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span> <span id="L195" class="LineNr">195 </span> <span class="PreProc">#endif</span> <span id="L196" class="LineNr">196 </span> <span class="Identifier">break</span><span class="Delimiter">;</span> <span id="L197" class="LineNr">197 </span> <span class="Normal">case</span> <span class="Constant">SIGILL</span>: <span id="L198" class="LineNr">198 </span> <span class="PreProc">#ifdef __APPLE__</span> <span id="L199" class="LineNr">199 </span> cerr &lt;&lt; <span class="Constant">&quot;SIGILL: most likely caused by integer overflow\n&quot;</span><span class="Delimiter">;</span> <span id="L200" class="LineNr">200 </span> _Exit<span class="Delimiter">(</span><span class="Constant">1</span><span class="Delimiter">);</span> <span id="L201" class="LineNr">201 </span> <span class="PreProc">#endif</span> <span id="L202" class="LineNr">202 </span> <span class="Identifier">break</span><span class="Delimiter">;</span> <span id="L203" class="LineNr">203 </span> <span class="Normal">default</span>: <span id="L204" class="LineNr">204 </span> <span class="Identifier">break</span><span class="Delimiter">;</span> <span id="L205" class="LineNr">205 </span> <span class="Delimiter">}</span> <span id="L206" class="LineNr">206 </span><span class="Delimiter">}</span> <span id="L207" class="LineNr">207 </span><span class="Delimiter">:(before &quot;End Includes&quot;)</span> <span id="L208" class="LineNr">208 </span><span class="PreProc">#include </span><span class="Constant">&lt;signal.h&gt;</span> <span id="L209" class="LineNr">209 </span> <span id="L210" class="LineNr">210 </span><span class="Comment">//: 6. Map's operator[] being non-const is fucking evil.</span> <span id="L211" class="LineNr">211 </span><span class="Delimiter">:(before &quot;Globals&quot;)</span> <span class="Comment">// can't generate prototypes for these</span> <span id="L212" class="LineNr">212 </span><span class="Comment">// from <a href="http://stackoverflow.com/questions/152643/idiomatic-c-for-reading-from-a-const-map">http://stackoverflow.com/questions/152643/idiomatic-c-for-reading-from-a-const-map</a></span> <span id="L213" class="LineNr">213 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type&amp; get<span class="Delimiter">(</span><span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L214" class="LineNr">214 </span> <span class="Normal">typename</span> <span class="Special">T</span>::iterator iter<span class="Delimiter">(</span>map<span class="Delimiter">.</span>find<span class="Delimiter">(</span>key<span class="Delimiter">));</span> <span id="L215" class="LineNr">215 </span> <span class="Normal">if</span> <span class="Delimiter">(</span>iter == map<span class="Delimiter">.</span>end<span class="Delimiter">())</span> <span class="Delimiter">{</span> <span id="L216" class="LineNr">216 </span> cerr &lt;&lt; <span class="Constant">&quot;get couldn't find key '&quot;</span> &lt;&lt; key &lt;&lt; <span class="Constant">&quot;'\n&quot;</span><span class="Delimiter">;</span> <span id="L217" class="LineNr">217 </span> assert<span class="Delimiter">(</span>iter != map<span class="Delimiter">.</span>end<span class="Delimiter">());</span> <span id="L218" class="LineNr">218 </span> <span class="Delimiter">}</span> <span id="L219" class="LineNr">219 </span> <span class="Identifier">return</span> iter<span class="Delimiter">-&gt;</span>second<span class="Delimiter">;</span> <span id="L220" class="LineNr">220 </span><span class="Delimiter">}</span> <span id="L221" class="LineNr">221 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type <span class="Normal">const</span>&amp; get<span class="Delimiter">(</span><span class="Normal">const</span> <span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L222" class="LineNr">222 </span> <span class="Normal">typename</span> <span class="Special">T</span>::const_iterator iter<span class="Delimiter">(</span>map<span class="Delimiter">.</span>find<span class="Delimiter">(</span>key<span class="Delimiter">));</span> <span id="L223" class="LineNr">223 </span> <span class="Normal">if</span> <span class="Delimiter">(</span>iter == map<span class="Delimiter">.</span>end<span class="Delimiter">())</span> <span class="Delimiter">{</span> <span id="L224" class="LineNr">224 </span> cerr &lt;&lt; <span class="Constant">&quot;get couldn't find key '&quot;</span> &lt;&lt; key &lt;&lt; <span class="Constant">&quot;'\n&quot;</span><span class="Delimiter">;</span> <span id="L225" class="LineNr">225 </span> assert<span class="Delimiter">(</span>iter != map<span class="Delimiter">.</span>end<span class="Delimiter">());</span> <span id="L226" class="LineNr">226 </span> <span class="Delimiter">}</span> <span id="L227" class="LineNr">227 </span> <span class="Identifier">return</span> iter<span class="Delimiter">-&gt;</span>second<span class="Delimiter">;</span> <span id="L228" class="LineNr">228 </span><span class="Delimiter">}</span> <span id="L229" class="LineNr">229 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type <span class="Normal">const</span>&amp; <a href='001help.cc.html#L229'>put</a><span class="Delimiter">(</span><span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type <span class="Normal">const</span>&amp; value<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L230" class="LineNr">230 </span> map[key] = value<span class="Delimiter">;</span> <span id="L231" class="LineNr">231 </span> <span class="Identifier">return</span> map[key]<span class="Delimiter">;</span> <span id="L232" class="LineNr">232 </span><span class="Delimiter">}</span> <span id="L233" class="LineNr">233 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">bool</span> <a href='001help.cc.html#L233'>contains_key</a><span class="Delimiter">(</span><span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L234" class="LineNr">234 </span> <span class="Identifier">return</span> map<span class="Delimiter">.</span>find<span class="Delimiter">(</span>key<span class="Delimiter">)</span> != map<span class="Delimiter">.</span>end<span class="Delimiter">();</span> <span id="L235" class="LineNr">235 </span><span class="Delimiter">}</span> <span id="L236" class="LineNr">236 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type&amp; <a href='001help.cc.html#L236'>get_or_insert</a><span class="Delimiter">(</span><span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L237" class="LineNr">237 </span> <span class="Identifier">return</span> map[key]<span class="Delimiter">;</span> <span id="L238" class="LineNr">238 </span><span class="Delimiter">}</span> <span id="L239" class="LineNr">239 </span><span class="Normal">template</span>&lt;<span class="Normal">typename</span> <span class="Special">T</span>&gt; <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type <span class="Normal">const</span>&amp; <a href='001help.cc.html#L239'>put_new</a><span class="Delimiter">(</span><span class="Special">T</span>&amp; map<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::key_type <span class="Normal">const</span>&amp; key<span class="Delimiter">,</span> <span class="Normal">typename</span> <span class="Special">T</span>::mapped_type <span class="Normal">const</span>&amp; value<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L240" class="LineNr">240 </span> assert<span class="Delimiter">(</span>map<span class="Delimiter">.</span>find<span class="Delimiter">(</span>key<span class="Delimiter">)</span> == map<span class="Delimiter">.</span>end<span class="Delimiter">());</span> <span id="L241" class="LineNr">241 </span> map[key] = value<span class="Delimiter">;</span> <span id="L242" class="LineNr">242 </span> <span class="Identifier">return</span> map[key]<span class="Delimiter">;</span> <span id="L243" class="LineNr">243 </span><span class="Delimiter">}</span> <span id="L244" class="LineNr">244 </span><span class="Comment">//: The contract: any container that relies on get_or_insert should never call</span> <span id="L245" class="LineNr">245 </span><span class="Comment">//: contains_key.</span> <span id="L246" class="LineNr">246 </span> <span id="L247" class="LineNr">247 </span><span class="Comment">//: 7. istreams are a royal pain in the arse. You have to be careful about</span> <span id="L248" class="LineNr">248 </span><span class="Comment">//: what subclass you try to putback into. You have to watch out for the pesky</span> <span id="L249" class="LineNr">249 </span><span class="Comment">//: failbit and badbit. Just avoid eof() and use this helper instead.</span> <span id="L250" class="LineNr">250 </span><span class="Delimiter">:(code)</span> <span id="L251" class="LineNr">251 </span><span class="Normal">bool</span> <a href='001help.cc.html#L251'>has_data</a><span class="Delimiter">(</span>istream&amp; in<span class="Delimiter">)</span> <span class="Delimiter">{</span> <span id="L252" class="LineNr">252 </span> <span class="Identifier">return</span> in &amp;&amp; !in<span class="Delimiter">.</span>eof<span class="Delimiter">();</span> <span id="L253" class="LineNr">253 </span><span class="Delimiter">}</span> <span id="L254" class="LineNr">254 </span> <span id="L255" class="LineNr">255 </span><span class="Delimiter">:(before &quot;End Includes&quot;)</span> <span id="L256" class="LineNr">256 </span><span class="PreProc">#include </span><span class="Constant">&lt;assert.h&gt;</span> <span id="L257" class="LineNr">257 </span> <span id="L258" class="LineNr">258 </span><span class="PreProc">#include </span><span class="Constant">&lt;iostream&gt;</span> <span id="L259" class="LineNr">259 </span><span class="Normal">using</span> std::istream<span class="Delimiter">;</span> <span id="L260" class="LineNr">260 </span><span class="Normal">using</span> std::ostream<span class="Delimiter">;</span> <span id="L261" class="LineNr">261 </span><span class="Normal">using</span> std::iostream<span class="Delimiter">;</span> <span id="L262" class="LineNr">262 </span><span class="Normal">using</span> std::cin<span class="Delimiter">;</span> <span id="L263" class="LineNr">263 </span><span class="Normal">using</span> std::cout<span class="Delimiter">;</span> <span id="L264" class="LineNr">264 </span><span class="Normal">using</span> std::cerr<span class="Delimiter">;</span> <span id="L265" class="LineNr">265 </span><span class="PreProc">#include </span><span class="Constant">&lt;iomanip&gt;</span> <span id="L266" class="LineNr">266 </span> <span id="L267" class="LineNr">267 </span><span class="PreProc">#include </span><span class="Constant">&lt;string.h&gt;</span> <span id="L268" class="LineNr">268 </span><span class="PreProc">#include </span><span class="Constant">&lt;string&gt;</span> <span id="L269" class="LineNr">269 </span><span class="Normal">using</span> std::string<span class="Delimiter">;</span> <span id="L270" class="LineNr">270 </span> <span id="L271" class="LineNr">271 </span><span class="PreProc">#include </span><span class="Constant">&lt;algorithm&gt;</span> <span id="L272" class="LineNr">272 </span><span class="Normal">using</span> std::min<span class="Delimiter">;</span> <span id="L273" class="LineNr">273 </span><span class="Normal">using</span> std::max<span class="Delimiter">;</span> </pre> </body> </html> <!-- vim: set foldmethod=manual : -->