charm 0.0.1

ARM assembler & disassembler generated from the ARM exploration tools.
Documentation
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
# Charm

ARM assembler/disassembler auto-generated from the [ARM Exploration Tools](https://developer.arm.com/Architectures/A-Profile%20Architecture#Downloads).

Very early version/POC, the API will change in the future.
Only handles general T32/A32/A64 base instructions and has no lexer. Tested against LLVM.

Inspired by [https://github.com/icedland/iced](https://github.com/icedland/iced).

## Documentation

```
cargo doc --open
```

## Tests

```
cargo test --release
```

## Examples

### A64

```rust
use charm::core::a64::config::*;
use charm::core::a64::consts::*;
use charm::core::a64::decoder::*;
use charm::core::a64::encoder::*;
use charm::core::a64::formatter::*;
use charm::core::a64::instruction::*;
use charm::core::a64::operand::*;
use charm::error::*;

pub fn main() -> Result<()> {
    // -------------------------------------------------------------------------------------------
    // Decoding
    // -------------------------------------------------------------------------------------------

    // Original instructions to decode at address 0xdeadbeefdead0000.
    let code = vec![
        // function:
        0xfd, 0x7b, 0x01, 0xa9, // stp x29, x30, [sp, #16]
        0x03, 0x00, 0x40, 0xf9, // ldr x3, [x0]
        0x24, 0x00, 0x40, 0xf9, // ldr x4, [x1]
        0x7f, 0x00, 0x04, 0xeb, // cmp x3, x4
        0x61, 0x00, 0x00, 0x54, // bne not_equal
        0x65, 0xff, 0xff, 0x10, // adr x5, function
        0x03, 0x00, 0x00, 0x14, // b end
        // not_equal:
        0x05, 0x00, 0x80, 0xd2, // mov x5, #0
        0xb3, 0x2f, 0x00, 0x14, // b 0xdeadbeefdeadbeec
        // end:
        0x45, 0x00, 0x00, 0xf9, // str x5, [x2]
        0xfd, 0x7b, 0x41, 0xa9, // ldp x29, x30, [sp, #16]
        0xc0, 0x03, 0x5f, 0xd6, // ret
    ];

    // Configuring the decoder to behave like LLVM.
    let config = ConfigLLVM::new();

    // We decode all the instructions into an instruction block.
    let mut decoder = Decoder::new(&code, config.clone());
    let mut block = decoder.decode_block(0xdeadbeefdead0000)?;

    // The instructions/labels expected in the block.
    let mut expected_instructions: Vec<InstructionBlockElement> = vec![
        0xdeadbeefdead0000.into(),
        Instruction::with_4(
            Code::STP_64_ldstpair_off,
            Register::X29,
            Register::X30,
            Register::SP,
            16i32,
        )?
        .into(),
        Instruction::with_3(Code::LDR_64_ldst_pos, Register::X3, Register::X0, 0u32)?.into(),
        Instruction::with_3(Code::LDR_64_ldst_pos, Register::X4, Register::X1, 0u32)?.into(),
        Instruction::with_3(
            Code::CMP_SUBS_64_addsub_shift,
            Register::X3,
            Register::X4,
            Extension::Lsl(0),
        )?
        .into(),
        Instruction::with_2(
            Code::B_only_condbranch,
            Condition::Ne,
            Label::LabelName(0xdeadbeefdead001c),
        )?
        .into(),
        Instruction::with_2(
            Code::ADR_only_pcreladdr,
            Register::X5,
            Label::LabelName(0xdeadbeefdead0000),
        )?
        .into(),
        Instruction::with_1(
            Code::B_only_branch_imm,
            Label::LabelName(0xdeadbeefdead0024),
        )?
        .into(),
        0xdeadbeefdead001c.into(),
        Instruction::with_2(Code::MOV_MOVZ_64_movewide, Register::X5, 0i64)?.into(),
        Instruction::with_1(
            Code::B_only_branch_imm,
            Label::LabelName(0xdeadbeefdeadbeec),
        )?
        .into(),
        0xdeadbeefdead0024.into(),
        Instruction::with_3(Code::STR_64_ldst_pos, Register::X5, Register::X2, 0u32)?.into(),
        Instruction::with_4(
            Code::LDP_64_ldstpair_off,
            Register::X29,
            Register::X30,
            Register::SP,
            16i32,
        )?
        .into(),
        Instruction::with_1(Code::RET_64R_branch_reg, Register::X30)?.into(),
    ];
    // Here we need to manually update the address of each instruction to make the assert succeed.
    let mut pc = 0xdeadbeefdead0000;
    for element in &mut expected_instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                i.pc = pc;
                pc += i.size as u64;
            }
        }
    }
    let expected_block =
        InstructionBlock::with_instructions(0xdeadbeefdead0000, expected_instructions);
    assert_eq!(block, expected_block);

    // -------------------------------------------------------------------------------------------
    // Encoding
    // -------------------------------------------------------------------------------------------

    // The new address where we want to reencode our block
    block.pc = 0xdeadbeefdeed0000;
    let encoder_block = EncoderBlock::new(vec![block.clone()]);
    let code_blocks = encoder_block.encode()?;

    // The expected output, which are the original instruction but at address 0xdeadbeefdeed0000.
    let expected_code = [
        0xfd, 0x7b, 0x01, 0xa9, 0x03, 0x00, 0x40, 0xf9, 0x24, 0x00, 0x40, 0xf9, 0x7f, 0x00, 0x04,
        0xeb, 0x61, 0x00, 0x00, 0x54, 0x65, 0xff, 0xff, 0x10, 0x03, 0x00, 0x00, 0x14, 0x05, 0x00,
        0x80, 0xd2, 0xb3, 0x2f, 0xf0, 0x17, 0x45, 0x00, 0x00, 0xf9, 0xfd, 0x7b, 0x41, 0xa9, 0xc0,
        0x03, 0x5f, 0xd6,
    ];
    assert_eq!(expected_code, code_blocks[0].data[..]);

    // -------------------------------------------------------------------------------------------
    // Formatting
    // -------------------------------------------------------------------------------------------

    let mut output = String::new();
    let mut formatter = Fmt {};
    let mut config = ConfigLLVM::new();

    // Settings can be applied globally and per-instruction.
    // Here we change the output of the branch instruction to format label names as hexadecimal
    // numbers instead of decimal ones.
    config
        .instructions
        .b_only_condbranch
        .syntax
        .positive_integer_format = Some(FormatInteger::HexadecimalUnsigned);
    config
        .instructions
        .b_only_condbranch
        .syntax
        .negative_integer_format = Some(FormatInteger::HexadecimalUnsigned);
    config
        .instructions
        .b_only_branch_imm
        .syntax
        .positive_integer_format = Some(FormatInteger::HexadecimalUnsigned);
    config
        .instructions
        .b_only_branch_imm
        .syntax
        .negative_integer_format = Some(FormatInteger::HexadecimalUnsigned);
    config
        .instructions
        .adr_only_pcreladdr
        .syntax
        .positive_integer_format = Some(FormatInteger::HexadecimalUnsigned);
    config
        .instructions
        .adr_only_pcreladdr
        .syntax
        .negative_integer_format = Some(FormatInteger::HexadecimalUnsigned);

    // We format each instruction and separate them with a line return.
    for element in block.instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                formatter.format(&mut output, &config, &i)?;
                output.push_str("\n");
            }
        }
    }

    // The expected output.
    assert_eq!(
        output,
        "stp x29, x30, [sp, #16]\n\
        ldr x3, [x0]\n\
        ldr x4, [x1]\n\
        cmp x3, x4\n\
        b.ne #0xdeadbeefdead001c\n\
        adr x5, #0xdeadbeefdead0000\n\
        b #0xdeadbeefdead0024\n\
        mov x5, #0\n\
        b #0xdeadbeefdeadbeec\n\
        str x5, [x2]\n\
        ldp x29, x30, [sp, #16]\n\
        ret\n"
    );

    Ok(())
}
```

### A32

```rust
use charm::core::a32::config::*;
use charm::core::a32::consts::*;
use charm::core::a32::decoder::*;
use charm::core::a32::encoder::*;
use charm::core::a32::formatter::*;
use charm::core::a32::instruction::*;
use charm::core::a32::operand::*;
use charm::error::*;

pub fn main() -> Result<()> {
    // -------------------------------------------------------------------------------------------
    // Decoding
    // -------------------------------------------------------------------------------------------

    // Original instructions to decode at address 0xdead0000.
    let code = vec![
        // function:
        0x04, 0xe0, 0x0d, 0xe5, // str lr, [sp, #-4]
        0x00, 0x30, 0x90, 0xe5, // ldr r3, [r0]
        0x00, 0x40, 0x91, 0xe5, // ldr r4, [r1]
        0x04, 0x00, 0x53, 0xe1, // cmp r3, r4
        0x00, 0x00, 0x00, 0x0a, // beq equal
        // end:
        0xb4, 0x2f, 0x00, 0xea, // b 0xdeadbeec
        // equal:
        0x20, 0x50, 0x4f, 0xe2, // adr r5, function
        0x00, 0x50, 0x82, 0xe5, // str r5, [r2]
        0xfb, 0xff, 0xff, 0xea, // b end
    ];

    // Configuring the decoder to behave like LLVM.
    let config = ConfigLLVM::new();

    // We decode all the instructions into an instruction block.
    let mut decoder = Decoder::new(&code, config.clone());
    let mut block = decoder.decode_block(0xdead0000)?;

    // The instructions/labels expected in the block.
    let mut expected_instructions: Vec<InstructionBlockElement> = vec![
        Instruction::with_5(
            Code::STR_i_A1_pre,
            MnemonicCondition::Al,
            Register::R14,
            Register::R13,
            PlusMinus::Minus,
            4u32,
        )?
        .into(),
        Instruction::with_5(
            Code::LDR_i_A1_off,
            MnemonicCondition::Al,
            Register::R3,
            Register::R0,
            PlusMinus::Plus,
            0u32,
        )?
        .into(),
        Instruction::with_5(
            Code::LDR_i_A1_off,
            MnemonicCondition::Al,
            Register::R4,
            Register::R1,
            PlusMinus::Plus,
            0u32,
        )?
        .into(),
        Instruction::with_3(
            Code::CMP_r_A1,
            MnemonicCondition::Al,
            Register::R3,
            Register::R4,
        )?
        .into(),
        Instruction::with_2(
            Code::B_A1,
            MnemonicCondition::Eq,
            Label::LabelName(0xdead0018),
        )?
        .into(),
        0xdead0014.into(),
        Instruction::with_2(
            Code::B_A1,
            MnemonicCondition::Al,
            Label::LabelName(0xdeadbeec),
        )?
        .into(),
        0xdead0018.into(),
        Instruction::with_4(
            Code::SUB_ADR_A2,
            MnemonicCondition::Al,
            Register::R5,
            Register::R15,
            ModifiedImmediate(0, 32),
        )?
        .into(),
        Instruction::with_5(
            Code::STR_i_A1_off,
            MnemonicCondition::Al,
            Register::R5,
            Register::R2,
            PlusMinus::Plus,
            0u32,
        )?
        .into(),
        Instruction::with_2(
            Code::B_A1,
            MnemonicCondition::Al,
            Label::LabelName(0xdead0014),
        )?
        .into(),
    ];
    // Here we need to manually update the address of each instruction to make the assert succeed.
    let mut pc = 0xdead0000;
    for element in &mut expected_instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                i.pc = pc;
                pc += i.size as u32;
            }
        }
    }
    let expected_block = InstructionBlock::with_instructions(0xdead0000, expected_instructions);
    assert_eq!(block, expected_block);

    // -------------------------------------------------------------------------------------------
    // Encoding
    // -------------------------------------------------------------------------------------------

    // The new address where we want to reencode our block
    block.pc = 0xdeed0000;
    let encoder_block = EncoderBlock::new(vec![block.clone()]);
    let code_blocks = encoder_block.encode()?;

    // The expected output, which are the original instruction but at address 0xdeed0000.
    let expected_code = [
        0x04, 0xe0, 0x0d, 0xe5, 0x00, 0x30, 0x90, 0xe5, 0x00, 0x40, 0x91, 0xe5, 0x04, 0x00, 0x53,
        0xe1, 0x00, 0x00, 0x00, 0x0a, 0xb4, 0x2f, 0xf0, 0xea, 0x20, 0x50, 0x4f, 0xe2, 0x00, 0x50,
        0x82, 0xe5, 0xfb, 0xff, 0xff, 0xea,
    ];
    assert_eq!(expected_code, code_blocks[0].data[..]);

    // -------------------------------------------------------------------------------------------
    // Formatting
    // -------------------------------------------------------------------------------------------

    let mut output = String::new();
    let mut formatter = Fmt {};
    let mut config = ConfigLLVM::new();

    // Settings can be applied globally and per-instruction.
    // Here we change the output of the branch instruction to format label names as hexadecimal
    // numbers instead of decimal ones.
    config.instructions.b_a1.syntax.positive_integer_format =
        Some(FormatInteger::HexadecimalUnsigned);

    // We format each instruction and separate them with a line return.
    for element in block.instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                formatter.format(&mut output, &config, &i)?;
                output.push_str("\n");
            }
        }
    }

    // The expected output.
    assert_eq!(
        output,
        "str lr, [sp, #-4]\n\
        ldr r3, [r0]\n\
        ldr r4, [r1]\n\
        cmp r3, r4\n\
        beq #0xdead0018\n\
        b #0xdeadbeec\n\
        sub r5, pc, #32\n\
        str r5, [r2]\n\
        b #0xdead0014\n"
    );

    Ok(())
}
```

### T32

```rust
use charm::core::t32::config::*;
use charm::core::t32::consts::*;
use charm::core::t32::decoder::*;
use charm::core::t32::encoder::*;
use charm::core::t32::formatter::*;
use charm::core::t32::instruction::*;
use charm::core::t32::operand::*;
use charm::error::*;

pub fn main() -> Result<()> {
    // -------------------------------------------------------------------------------------------
    // Decoding
    // -------------------------------------------------------------------------------------------

    // Original instructions to decode at address 0xdead0000.
    let code = vec![
        // function:
        0x4d, 0xf8, 0x04, 0xec, // str lr, [sp, #-4]
        0x03, 0x68, // ldr r3, [r0]
        0x0c, 0x68, // ldr r4, [r1]
        0xa3, 0x42, // cmp r3, r4
        0x0e, 0xbf, // itee eq
        0xaf, 0xf2, 0x10, 0x05, // adreq r5, function
        0x00, 0x25, // movne r5, #0
        0x00, 0xf0, 0x7c, 0xbe, // bne 0xdead0d0e
        0x5d, 0xf8, 0x04, 0xfc, // ldr pc, [sp, #-4]
    ];

    // Configuring the decoder to behave like LLVM.
    let config = ConfigLLVM::new();

    // We decode all the instructions into an instruction block.
    let mut decoder = Decoder::new(&code, config.clone());
    let mut block = decoder.decode_block(0xdead0000)?;

    // The instructions/labels expected in the block.
    let mut expected_instructions: Vec<InstructionBlockElement> = vec![
        0xdead0000.into(),
        Instruction::with_4(
            Code::STR_i_T4_off,
            MnemonicCondition::Al,
            Register::R14,
            Register::R13,
            4u32,
        )?
        .into(),
        Instruction::with_4(
            Code::LDR_i_T1,
            MnemonicCondition::Al,
            Register::R3,
            Register::R0,
            0u32,
        )?
        .into(),
        Instruction::with_4(
            Code::LDR_i_T1,
            MnemonicCondition::Al,
            Register::R4,
            Register::R1,
            0u32,
        )?
        .into(),
        Instruction::with_3(
            Code::CMP_r_T1,
            MnemonicCondition::Al,
            Register::R3,
            Register::R4,
        )?
        .into(),
        Instruction::with_4(
            Code::IT_T1,
            ItCondition::Else,
            ItCondition::Else,
            ItCondition::None,
            Condition::Eq,
        )?
        .into(),
        Instruction::with_3(
            Code::ADR_T2,
            MnemonicCondition::Eq,
            Register::R5,
            Label::LabelName(0xdead0000),
        )?
        .into(),
        Instruction::with_encoding_3(
            Code::MOV_i_T1,
            Encoding::Alt1,
            MnemonicCondition::Ne,
            Register::R5,
            0u32,
        )?
        .into(),
        Instruction::with_encoding_2(
            Code::B_T4,
            Encoding::Alt1,
            MnemonicCondition::Ne,
            Label::LabelName(0xdead0d0e),
        )?
        .into(),
        Instruction::with_4(
            Code::LDR_i_T4_off,
            MnemonicCondition::Al,
            Register::R15,
            Register::R13,
            4u32,
        )?
        .into(),
    ];
    // Here we need to manually update the address of each instruction to make the assert succeed.
    let mut pc = 0xdead0000;
    for element in &mut expected_instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                i.pc = pc;
                pc += i.size as u32;
            }
        }
    }
    let expected_block = InstructionBlock::with_instructions(0xdead0000, expected_instructions);
    assert_eq!(block, expected_block);

    // -------------------------------------------------------------------------------------------
    // Encoding
    // -------------------------------------------------------------------------------------------

    // The new address where we want to reencode our block
    block.pc = 0xdeed0000;
    let encoder_block = EncoderBlock::new(vec![block.clone()]);
    let code_blocks = encoder_block.encode()?;

    // The expected output, which are the original instruction but at address 0xdeed0000.
    let expected_code = [
        0x4d, 0xf8, 0x04, 0xec, 0x03, 0x68, 0x0c, 0x68, 0xa3, 0x42, 0x0e, 0xbf, 0xaf, 0xf2, 0x10,
        0x05, 0x00, 0x25, 0x00, 0xf4, 0x7c, 0xbe, 0x5d, 0xf8, 0x04, 0xfc,
    ];
    assert_eq!(expected_code, code_blocks[0].data[..]);

    // -------------------------------------------------------------------------------------------
    // Formatting
    // -------------------------------------------------------------------------------------------

    let mut output = String::new();
    let mut formatter = Fmt {};
    let mut config = ConfigLLVM::new();

    // Settings can be applied globally and per-instruction.
    // Here we change the output of the branch instruction to format label names as hexadecimal
    // numbers instead of decimal ones.
    config.instructions.b_t4.syntax.positive_integer_format =
        Some(FormatInteger::HexadecimalUnsigned);
    config.instructions.b_t4.syntax.negative_integer_format =
        Some(FormatInteger::HexadecimalUnsigned);
    config.instructions.adr_t2.syntax.positive_integer_format =
        Some(FormatInteger::HexadecimalUnsigned);
    config.instructions.adr_t2.syntax.negative_integer_format =
        Some(FormatInteger::HexadecimalUnsigned);

    // We format each instruction and separate them with a line return.
    for element in block.instructions {
        match element {
            InstructionBlockElement::Label(_) => {}
            InstructionBlockElement::Instruction(i) => {
                formatter.format(&mut output, &config, &i)?;
                output.push_str("\n");
            }
        }
    }

    // The expected output.
    assert_eq!(
        output,
        "str lr, [sp, #-4]\n\
        ldr r3, [r0]\n\
        ldr r4, [r1]\n\
        cmp r3, r4\n\
        itee eq\n\
        adreq.w r5, #0xdead0000\n\
        movne r5, #0\n\
        bne.w #0xdead0d0e\n\
        ldr pc, [sp, #-4]\n"
    );

    Ok(())
}
```


## To-Do

- Encoder/Decoder
    - Lexer
    - System registers
    - ARM features
    - ARM pseudocode parser (extract information from decode/operation pseudocode)
    - Remaining instruction types (system, simd/fp, sve, sme, etc.)
    - Errors
    - Serde
- Generator
    - Code refactor
- Tests
    - Test against additional disassemblers
    - Fuzzing
    - Benchmark
    - CI
- Misc
    - Documentation