12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058 |
- // SPDX-License-Identifier: (Apache-2.0 OR MIT)
- #![cfg_attr(feature = "cargo-clippy", allow(clippy::unreadable_literal))]
- #![cfg(feature = "cranelift")]
- extern crate rbpf;
- mod common;
- use rbpf::{assembler::assemble, helpers};
- macro_rules! test_cranelift {
- ($name:ident, $prog:expr, $expected:expr) => {
- #[test]
- fn $name() {
- let prog = assemble($prog).unwrap();
- let vm = rbpf::EbpfVmNoData::new(Some(&prog)).unwrap();
- assert_eq!(vm.execute_cranelift().unwrap(), $expected);
- }
- };
- ($name:ident, $prog:expr, $mem:expr, $expected:expr) => {
- #[test]
- fn $name() {
- let prog = assemble($prog).unwrap();
- let mem = &mut $mem;
- let vm = rbpf::EbpfVmRaw::new(Some(&prog)).unwrap();
- assert_eq!(vm.execute_cranelift(mem).unwrap(), $expected);
- }
- };
- }
- test_cranelift!(
- test_cranelift_add,
- "
- mov32 r0, 0
- mov32 r1, 2
- add32 r0, 1
- add32 r0, r1
- exit
- ",
- 0x3
- );
- test_cranelift!(
- test_cranelift_alu64_arith,
- "
- mov r0, 0
- mov r1, 1
- mov r2, 2
- mov r3, 3
- mov r4, 4
- mov r5, 5
- mov r6, 6
- mov r7, 7
- mov r8, 8
- mov r9, 9
- add r0, 23
- add r0, r7
- sub r0, 13
- sub r0, r1
- mul r0, 7
- mul r0, r3
- div r0, 2
- div r0, r4
- exit
- ",
- 0x2a
- );
- test_cranelift!(
- test_cranelift_alu64_bit,
- "
- mov r0, 0
- mov r1, 1
- mov r2, 2
- mov r3, 3
- mov r4, 4
- mov r5, 5
- mov r6, 6
- mov r7, 7
- mov r8, 8
- or r0, r5
- or r0, 0xa0
- and r0, 0xa3
- mov r9, 0x91
- and r0, r9
- lsh r0, 32
- lsh r0, 22
- lsh r0, r8
- rsh r0, 32
- rsh r0, 19
- rsh r0, r7
- xor r0, 0x03
- xor r0, r2
- exit
- ",
- 0x11
- );
- test_cranelift!(
- test_cranelift_alu_arith,
- "
- mov32 r0, 0
- mov32 r1, 1
- mov32 r2, 2
- mov32 r3, 3
- mov32 r4, 4
- mov32 r5, 5
- mov32 r6, 6
- mov32 r7, 7
- mov32 r8, 8
- mov32 r9, 9
- add32 r0, 23
- add32 r0, r7
- sub32 r0, 13
- sub32 r0, r1
- mul32 r0, 7
- mul32 r0, r3
- div32 r0, 2
- div32 r0, r4
- exit
- ",
- 0x2a
- );
- test_cranelift!(
- test_cranelift_alu_bit,
- "
- mov32 r0, 0
- mov32 r1, 1
- mov32 r2, 2
- mov32 r3, 3
- mov32 r4, 4
- mov32 r5, 5
- mov32 r6, 6
- mov32 r7, 7
- mov32 r8, 8
- or32 r0, r5
- or32 r0, 0xa0
- and32 r0, 0xa3
- mov32 r9, 0x91
- and32 r0, r9
- lsh32 r0, 22
- lsh32 r0, r8
- rsh32 r0, 19
- rsh32 r0, r7
- xor32 r0, 0x03
- xor32 r0, r2
- exit
- ",
- 0x11
- );
- test_cranelift!(
- test_cranelift_arsh32_high_shift,
- "
- mov r0, 8
- lddw r1, 0x100000001
- arsh32 r0, r1
- exit
- ",
- 0x4
- );
- test_cranelift!(
- test_cranelift_arsh,
- "
- mov32 r0, 0xf8
- lsh32 r0, 28
- arsh32 r0, 16
- exit
- ",
- 0xffff8000
- );
- test_cranelift!(
- test_cranelift_arsh64,
- "
- mov32 r0, 1
- lsh r0, 63
- arsh r0, 55
- mov32 r1, 5
- arsh r0, r1
- exit
- ",
- 0xfffffffffffffff8
- );
- test_cranelift!(
- test_cranelift_arsh_reg,
- "
- mov32 r0, 0xf8
- mov32 r1, 16
- lsh32 r0, 28
- arsh32 r0, r1
- exit
- ",
- 0xffff8000
- );
- test_cranelift!(
- test_cranelift_be16,
- "
- ldxh r0, [r1]
- be16 r0
- exit
- ",
- [0x11, 0x22],
- 0x1122
- );
- test_cranelift!(
- test_cranelift_be16_high,
- "
- ldxdw r0, [r1]
- be16 r0
- exit
- ",
- [0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88],
- 0x1122
- );
- test_cranelift!(
- test_cranelift_be32,
- "
- ldxw r0, [r1]
- be32 r0
- exit
- ",
- [0x11, 0x22, 0x33, 0x44],
- 0x11223344
- );
- test_cranelift!(
- test_cranelift_be32_high,
- "
- ldxdw r0, [r1]
- be32 r0
- exit
- ",
- [0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88],
- 0x11223344
- );
- test_cranelift!(
- test_cranelift_be64,
- "
- ldxdw r0, [r1]
- be64 r0
- exit
- ",
- [0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88],
- 0x1122334455667788
- );
- #[test]
- fn test_cranelift_call() {
- let prog = assemble(
- "
- mov r1, 1
- mov r2, 2
- mov r3, 3
- mov r4, 4
- mov r5, 5
- call 0
- exit",
- )
- .unwrap();
- let mut vm = rbpf::EbpfVmNoData::new(Some(&prog)).unwrap();
- vm.register_helper(0, helpers::gather_bytes).unwrap();
- assert_eq!(vm.execute_cranelift().unwrap(), 0x0102030405);
- }
- #[test]
- #[should_panic(expected = "[CRANELIFT] Error: unknown helper function (id: 0x3f)")]
- fn test_cranelift_err_call_unreg() {
- let prog = assemble("
- mov r1, 1
- mov r2, 2
- mov r3, 3
- mov r4, 4
- mov r5, 5
- call 63
- exit
- ").unwrap();
- let vm = rbpf::EbpfVmNoData::new(Some(&prog)).unwrap();
- vm.execute_cranelift().unwrap();
- }
- #[test]
- fn test_cranelift_call_memfrob() {
- let prog = assemble(
- "
- mov r6, r1
- add r1, 2
- mov r2, 4
- call 1
- ldxdw r0, [r6]
- be64 r0
- exit",
- )
- .unwrap();
- let mut vm = rbpf::EbpfVmRaw::new(Some(&prog)).unwrap();
- vm.register_helper(1, helpers::memfrob).unwrap();
- let mem = &mut [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08];
- assert_eq!(vm.execute_cranelift(mem).unwrap(), 0x102292e2f2c0708);
- }
- test_cranelift!(
- test_cranelift_div32_high_divisor,
- "
- mov r0, 12
- lddw r1, 0x100000004
- div32 r0, r1
- exit
- ",
- 0x3
- );
- test_cranelift!(
- test_cranelift_div32_imm,
- "
- lddw r0, 0x10000000c
- div32 r0, 4
- exit
- ",
- 0x3
- );
- test_cranelift!(
- test_cranelift_div32_reg,
- "
- lddw r0, 0x10000000c
- mov r1, 4
- div32 r0, r1
- exit
- ",
- 0x3
- );
- test_cranelift!(
- test_cranelift_div64_imm,
- "
- mov r0, 0xc
- lsh r0, 32
- div r0, 4
- exit
- ",
- 0x300000000
- );
- test_cranelift!(
- test_cranelift_div64_reg,
- "
- mov r0, 0xc
- lsh r0, 32
- mov r1, 4
- div r0, r1
- exit
- ",
- 0x300000000
- );
- test_cranelift!(
- test_cranelift_div64_by_zero_imm,
- "
- mov32 r0, 1
- div r0, 0
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_div_by_zero_imm,
- "
- mov32 r0, 1
- div32 r0, 0
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_mod64_by_zero_imm,
- "
- mov32 r0, 1
- mod r0, 0
- exit
- ",
- 0x1
- );
- test_cranelift!(
- test_cranelift_mod_by_zero_imm,
- "
- mov32 r0, 1
- mod32 r0, 0
- exit
- ",
- 0x1
- );
- test_cranelift!(
- test_cranelift_div64_by_zero_reg,
- "
- mov32 r0, 1
- mov32 r1, 0
- div r0, r1
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_div_by_zero_reg,
- "
- mov32 r0, 1
- mov32 r1, 0
- div32 r0, r1
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_mod64_by_zero_reg,
- "
- mov32 r0, 1
- mov32 r1, 0
- mod r0, r1
- exit
- ",
- 0x1
- );
- test_cranelift!(
- test_cranelift_mod_by_zero_reg,
- "
- mov32 r0, 1
- mov32 r1, 0
- mod32 r0, r1
- exit
- ",
- 0x1
- );
- test_cranelift!(
- test_cranelift_exit,
- "
- mov r0, 0
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_lddw,
- "
- lddw r0, 0x1122334455667788
- exit
- ",
- 0x1122334455667788
- );
- test_cranelift!(
- test_cranelift_lddw2,
- "
- lddw r0, 0x0000000080000000
- exit
- ",
- 0x80000000
- );
- test_cranelift!(
- test_cranelift_ldxb_all,
- "
- mov r0, r1
- ldxb r9, [r0+0]
- lsh r9, 0
- ldxb r8, [r0+1]
- lsh r8, 4
- ldxb r7, [r0+2]
- lsh r7, 8
- ldxb r6, [r0+3]
- lsh r6, 12
- ldxb r5, [r0+4]
- lsh r5, 16
- ldxb r4, [r0+5]
- lsh r4, 20
- ldxb r3, [r0+6]
- lsh r3, 24
- ldxb r2, [r0+7]
- lsh r2, 28
- ldxb r1, [r0+8]
- lsh r1, 32
- ldxb r0, [r0+9]
- lsh r0, 36
- or r0, r1
- or r0, r2
- or r0, r3
- or r0, r4
- or r0, r5
- or r0, r6
- or r0, r7
- or r0, r8
- or r0, r9
- exit
- ",
- [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09],
- 0x9876543210
- );
- test_cranelift!(
- test_cranelift_ldxb,
- "
- ldxb r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0x11, 0xcc, 0xdd],
- 0x11
- );
- test_cranelift!(
- test_cranelift_ldxdw,
- "
- ldxdw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0xcc, 0xdd],
- 0x8877665544332211
- );
- test_cranelift!(
- test_cranelift_ldxh_all,
- "
- mov r0, r1
- ldxh r9, [r0+0]
- be16 r9
- lsh r9, 0
- ldxh r8, [r0+2]
- be16 r8
- lsh r8, 4
- ldxh r7, [r0+4]
- be16 r7
- lsh r7, 8
- ldxh r6, [r0+6]
- be16 r6
- lsh r6, 12
- ldxh r5, [r0+8]
- be16 r5
- lsh r5, 16
- ldxh r4, [r0+10]
- be16 r4
- lsh r4, 20
- ldxh r3, [r0+12]
- be16 r3
- lsh r3, 24
- ldxh r2, [r0+14]
- be16 r2
- lsh r2, 28
- ldxh r1, [r0+16]
- be16 r1
- lsh r1, 32
- ldxh r0, [r0+18]
- be16 r0
- lsh r0, 36
- or r0, r1
- or r0, r2
- or r0, r3
- or r0, r4
- or r0, r5
- or r0, r6
- or r0, r7
- or r0, r8
- or r0, r9
- exit
- ",
- [
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x04, 0x00, 0x05, 0x00, 0x06, 0x00,
- 0x07, 0x00, 0x08, 0x00, 0x09
- ],
- 0x9876543210
- );
- test_cranelift!(
- test_cranelift_ldxh_all2,
- "
- mov r0, r1
- ldxh r9, [r0+0]
- be16 r9
- ldxh r8, [r0+2]
- be16 r8
- ldxh r7, [r0+4]
- be16 r7
- ldxh r6, [r0+6]
- be16 r6
- ldxh r5, [r0+8]
- be16 r5
- ldxh r4, [r0+10]
- be16 r4
- ldxh r3, [r0+12]
- be16 r3
- ldxh r2, [r0+14]
- be16 r2
- ldxh r1, [r0+16]
- be16 r1
- ldxh r0, [r0+18]
- be16 r0
- or r0, r1
- or r0, r2
- or r0, r3
- or r0, r4
- or r0, r5
- or r0, r6
- or r0, r7
- or r0, r8
- or r0, r9
- exit
- ",
- [
- 0x00, 0x01, 0x00, 0x02, 0x00, 0x04, 0x00, 0x08, 0x00, 0x10, 0x00, 0x20, 0x00, 0x40, 0x00,
- 0x80, 0x01, 0x00, 0x02, 0x00
- ],
- 0x3ff
- );
- test_cranelift!(
- test_cranelift_ldxh,
- "
- ldxh r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0x11, 0x22, 0xcc, 0xdd],
- 0x2211
- );
- test_cranelift!(
- test_cranelift_ldxh_same_reg,
- "
- mov r0, r1
- sth [r0], 0x1234
- ldxh r0, [r0]
- exit
- ",
- [0xff, 0xff],
- 0x1234
- );
- test_cranelift!(
- test_cranelift_ldxw_all,
- "
- mov r0, r1
- ldxw r9, [r0+0]
- be32 r9
- ldxw r8, [r0+4]
- be32 r8
- ldxw r7, [r0+8]
- be32 r7
- ldxw r6, [r0+12]
- be32 r6
- ldxw r5, [r0+16]
- be32 r5
- ldxw r4, [r0+20]
- be32 r4
- ldxw r3, [r0+24]
- be32 r3
- ldxw r2, [r0+28]
- be32 r2
- ldxw r1, [r0+32]
- be32 r1
- ldxw r0, [r0+36]
- be32 r0
- or r0, r1
- or r0, r2
- or r0, r3
- or r0, r4
- or r0, r5
- or r0, r6
- or r0, r7
- or r0, r8
- or r0, r9
- exit
- ",
- [
- 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00,
- 0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00
- ],
- 0x030f0f
- );
- test_cranelift!(
- test_cranelift_ldxw,
- "
- ldxw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0x11, 0x22, 0x33, 0x44, 0xcc, 0xdd],
- 0x44332211
- );
- test_cranelift!(
- test_cranelift_le16,
- "
- ldxh r0, [r1]
- le16 r0
- exit
- ",
- [0x22, 0x11],
- 0x1122
- );
- test_cranelift!(
- test_cranelift_le32,
- "
- ldxw r0, [r1]
- le32 r0
- exit
- ",
- [0x44, 0x33, 0x22, 0x11],
- 0x11223344
- );
- test_cranelift!(
- test_cranelift_le64,
- "
- ldxdw r0, [r1]
- le64 r0
- exit
- ",
- [0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11],
- 0x1122334455667788
- );
- test_cranelift!(
- test_cranelift_lsh_reg,
- "
- mov r0, 0x1
- mov r7, 4
- lsh r0, r7
- exit
- ",
- 0x10
- );
- test_cranelift!(
- test_cranelift_mod,
- "
- mov32 r0, 5748
- mod32 r0, 92
- mov32 r1, 13
- mod32 r0, r1
- exit
- ",
- 0x5
- );
- test_cranelift!(
- test_cranelift_mod32,
- "
- lddw r0, 0x100000003
- mod32 r0, 3
- exit
- ",
- 0x0
- );
- test_cranelift!(
- test_cranelift_mod64,
- "
- mov32 r0, -1316649930
- lsh r0, 32
- or r0, 0x100dc5c8
- mov32 r1, 0xdde263e
- lsh r1, 32
- or r1, 0x3cbef7f3
- mod r0, r1
- mod r0, 0x658f1778
- exit
- ",
- 0x30ba5a04
- );
- test_cranelift!(
- test_cranelift_mov,
- "
- mov32 r1, 1
- mov32 r0, r1
- exit
- ",
- 0x1
- );
- test_cranelift!(
- test_cranelift_mul32_imm,
- "
- mov r0, 3
- mul32 r0, 4
- exit
- ",
- 0xc
- );
- test_cranelift!(
- test_cranelift_mul32_reg,
- "
- mov r0, 3
- mov r1, 4
- mul32 r0, r1
- exit
- ",
- 0xc
- );
- test_cranelift!(
- test_cranelift_mul32_reg_overflow,
- "
- mov r0, 0x40000001
- mov r1, 4
- mul32 r0, r1
- exit
- ",
- 0x4
- );
- test_cranelift!(
- test_cranelift_mul64_imm,
- "
- mov r0, 0x40000001
- mul r0, 4
- exit
- ",
- 0x100000004
- );
- test_cranelift!(
- test_cranelift_mul64_reg,
- "
- mov r0, 0x40000001
- mov r1, 4
- mul r0, r1
- exit
- ",
- 0x100000004
- );
- test_cranelift!(
- test_cranelift_stack,
- "
- mov r1, 51
- stdw [r10-16], 0xab
- stdw [r10-8], 0xcd
- and r1, 1
- lsh r1, 3
- mov r2, r10
- add r2, r1
- ldxdw r0, [r2-16]
- exit
- ",
- 0xcd
- );
- #[test]
- fn test_cranelift_stack2() {
- let prog = assemble(
- "
- stb [r10-4], 0x01
- stb [r10-3], 0x02
- stb [r10-2], 0x03
- stb [r10-1], 0x04
- mov r1, r10
- mov r2, 0x4
- sub r1, r2
- call 1
- mov r1, 0
- ldxb r2, [r10-4]
- ldxb r3, [r10-3]
- ldxb r4, [r10-2]
- ldxb r5, [r10-1]
- call 0
- xor r0, 0x2a2a2a2a
- exit",
- )
- .unwrap();
- let mut vm = rbpf::EbpfVmNoData::new(Some(&prog)).unwrap();
- vm.register_helper(0, helpers::gather_bytes).unwrap();
- vm.register_helper(1, helpers::memfrob).unwrap();
- assert_eq!(vm.execute_cranelift().unwrap(), 0x01020304);
- }
- test_cranelift!(
- test_cranelift_stb,
- "
- stb [r1+2], 0x11
- ldxb r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xcc, 0xdd],
- 0x11
- );
- test_cranelift!(
- test_cranelift_stdw,
- "
- stdw [r1+2], 0x44332211
- ldxdw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xdd],
- 0x44332211
- );
- test_cranelift!(
- test_cranelift_sth,
- "
- sth [r1+2], 0x2211
- ldxh r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xcc, 0xdd],
- 0x2211
- );
- test_cranelift!(
- test_cranelift_stw,
- "
- stw [r1+2], 0x44332211
- ldxw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xdd],
- 0x44332211
- );
- test_cranelift!(
- test_cranelift_stxb,
- "
- mov32 r2, 0x11
- stxb [r1+2], r2
- ldxb r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xcc, 0xdd],
- 0x11
- );
- test_cranelift!(
- test_cranelift_stxb_all,
- "
- mov r0, 0xf0
- mov r2, 0xf2
- mov r3, 0xf3
- mov r4, 0xf4
- mov r5, 0xf5
- mov r6, 0xf6
- mov r7, 0xf7
- mov r8, 0xf8
- stxb [r1], r0
- stxb [r1+1], r2
- stxb [r1+2], r3
- stxb [r1+3], r4
- stxb [r1+4], r5
- stxb [r1+5], r6
- stxb [r1+6], r7
- stxb [r1+7], r8
- ldxdw r0, [r1]
- be64 r0
- exit
- ",
- [0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff],
- 0xf0f2f3f4f5f6f7f8
- );
- test_cranelift!(
- test_cranelift_stxb_all2,
- "
- mov r0, r1
- mov r1, 0xf1
- mov r9, 0xf9
- stxb [r0], r1
- stxb [r0+1], r9
- ldxh r0, [r0]
- be16 r0
- exit
- ",
- [0xff, 0xff],
- 0xf1f9
- );
- test_cranelift!(
- test_cranelift_stxb_chain,
- "
- mov r0, r1
- ldxb r9, [r0+0]
- stxb [r0+1], r9
- ldxb r8, [r0+1]
- stxb [r0+2], r8
- ldxb r7, [r0+2]
- stxb [r0+3], r7
- ldxb r6, [r0+3]
- stxb [r0+4], r6
- ldxb r5, [r0+4]
- stxb [r0+5], r5
- ldxb r4, [r0+5]
- stxb [r0+6], r4
- ldxb r3, [r0+6]
- stxb [r0+7], r3
- ldxb r2, [r0+7]
- stxb [r0+8], r2
- ldxb r1, [r0+8]
- stxb [r0+9], r1
- ldxb r0, [r0+9]
- exit
- ",
- [0x2a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00],
- 0x2a
- );
- test_cranelift!(
- test_cranelift_stxdw,
- "
- mov r2, -2005440939
- lsh r2, 32
- or r2, 0x44332211
- stxdw [r1+2], r2
- ldxdw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xdd],
- 0x8877665544332211
- );
- test_cranelift!(
- test_cranelift_stxh,
- "
- mov32 r2, 0x2211
- stxh [r1+2], r2
- ldxh r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xcc, 0xdd],
- 0x2211
- );
- test_cranelift!(
- test_cranelift_stxw,
- "
- mov32 r2, 0x44332211
- stxw [r1+2], r2
- ldxw r0, [r1+2]
- exit
- ",
- [0xaa, 0xbb, 0xff, 0xff, 0xff, 0xff, 0xcc, 0xdd],
- 0x44332211
- );
|