bench.rs 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #![feature(test)]
  2. mod wire {
  3. use smoltcp::phy::ChecksumCapabilities;
  4. use smoltcp::wire::{IpAddress, IpProtocol};
  5. #[cfg(feature = "proto-ipv4")]
  6. use smoltcp::wire::{Ipv4Address, Ipv4Packet, Ipv4Repr};
  7. #[cfg(feature = "proto-ipv6")]
  8. use smoltcp::wire::{Ipv6Address, Ipv6Packet, Ipv6Repr};
  9. use smoltcp::wire::{TcpControl, TcpPacket, TcpRepr, TcpSeqNumber};
  10. use smoltcp::wire::{UdpPacket, UdpRepr};
  11. use test;
  12. #[cfg(feature = "proto-ipv6")]
  13. const SRC_ADDR: IpAddress = IpAddress::Ipv6(Ipv6Address([
  14. 0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1,
  15. ]));
  16. #[cfg(feature = "proto-ipv6")]
  17. const DST_ADDR: IpAddress = IpAddress::Ipv6(Ipv6Address([
  18. 0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2,
  19. ]));
  20. #[cfg(all(not(feature = "proto-ipv6"), feature = "proto-ipv4"))]
  21. const SRC_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address([192, 168, 1, 1]));
  22. #[cfg(all(not(feature = "proto-ipv6"), feature = "proto-ipv4"))]
  23. const DST_ADDR: IpAddress = IpAddress::Ipv4(Ipv4Address([192, 168, 1, 2]));
  24. #[bench]
  25. #[cfg(any(feature = "proto-ipv6", feature = "proto-ipv4"))]
  26. fn bench_emit_tcp(b: &mut test::Bencher) {
  27. static PAYLOAD_BYTES: [u8; 400] = [0x2a; 400];
  28. let repr = TcpRepr {
  29. src_port: 48896,
  30. dst_port: 80,
  31. seq_number: TcpSeqNumber(0x01234567),
  32. ack_number: None,
  33. window_len: 0x0123,
  34. control: TcpControl::Syn,
  35. max_seg_size: None,
  36. window_scale: None,
  37. payload: &PAYLOAD_BYTES,
  38. };
  39. let mut bytes = vec![0xa5; repr.buffer_len()];
  40. b.iter(|| {
  41. let mut packet = TcpPacket::new(&mut bytes);
  42. repr.emit(
  43. &mut packet,
  44. &SRC_ADDR,
  45. &DST_ADDR,
  46. &ChecksumCapabilities::default(),
  47. );
  48. });
  49. }
  50. #[bench]
  51. #[cfg(any(feature = "proto-ipv6", feature = "proto-ipv4"))]
  52. fn bench_emit_udp(b: &mut test::Bencher) {
  53. static PAYLOAD_BYTES: [u8; 400] = [0x2a; 400];
  54. let repr = UdpRepr {
  55. src_port: 48896,
  56. dst_port: 80,
  57. payload: &PAYLOAD_BYTES,
  58. };
  59. let mut bytes = vec![0xa5; repr.buffer_len()];
  60. b.iter(|| {
  61. let mut packet = UdpPacket::new(&mut bytes);
  62. repr.emit(
  63. &mut packet,
  64. &SRC_ADDR,
  65. &DST_ADDR,
  66. &ChecksumCapabilities::default(),
  67. );
  68. });
  69. }
  70. #[bench]
  71. #[cfg(feature = "proto-ipv4")]
  72. fn bench_emit_ipv4(b: &mut test::Bencher) {
  73. let repr = Ipv4Repr {
  74. src_addr: Ipv4Address([192, 168, 1, 1]),
  75. dst_addr: Ipv4Address([192, 168, 1, 2]),
  76. protocol: IpProtocol::Tcp,
  77. payload_len: 100,
  78. hop_limit: 64,
  79. };
  80. let mut bytes = vec![0xa5; repr.buffer_len()];
  81. b.iter(|| {
  82. let mut packet = Ipv4Packet::new(&mut bytes);
  83. repr.emit(&mut packet, &ChecksumCapabilities::default());
  84. });
  85. }
  86. #[bench]
  87. #[cfg(feature = "proto-ipv6")]
  88. fn bench_emit_ipv6(b: &mut test::Bencher) {
  89. let repr = Ipv6Repr {
  90. src_addr: Ipv6Address([0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]),
  91. dst_addr: Ipv6Address([0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2]),
  92. next_header: IpProtocol::Tcp,
  93. payload_len: 100,
  94. hop_limit: 64,
  95. };
  96. let mut bytes = vec![0xa5; repr.buffer_len()];
  97. b.iter(|| {
  98. let mut packet = Ipv6Packet::new(&mut bytes);
  99. repr.emit(&mut packet);
  100. });
  101. }
  102. }