mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
a45276ab91
This can only be landed when `Allocator`, `Opaque`, and `AllocatorAlloc` have rolled into Flutter/engine, that into Flutter/flutter, and into g3. Deletes all the copies of `_CallocAllocator` and uses the one from `package:ffi` instead. Bug: https://github.com/dart-lang/sdk/issues/44622 Bug: https://github.com/dart-lang/sdk/issues/43974 Bug: https://github.com/dart-lang/sdk/issues/44621 Bug: https://github.com/dart-lang/sdk/issues/38721 Change-Id: I486034b379b5a63cad4aefd503ccd0f2ce5dd45e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/180188 Commit-Queue: Daco Harkes <dacoharkes@google.com> Reviewed-by: Aske Simon Christensen <askesc@google.com>
128 lines
2.2 KiB
Dart
128 lines
2.2 KiB
Dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// Micro-benchmark for ffi struct field stores and loads.
|
|
//
|
|
// Only tests a single field because the FfiMemory benchmark already tests loads
|
|
// and stores of different field sizes.
|
|
|
|
// @dart=2.9
|
|
|
|
import 'dart:ffi';
|
|
|
|
import 'package:ffi/ffi.dart';
|
|
import 'package:benchmark_harness/benchmark_harness.dart';
|
|
|
|
//
|
|
// Struct field store (plus Pointer elementAt and load).
|
|
//
|
|
|
|
void doStoreInt32(Pointer<VeryLargeStruct> pointer, int length) {
|
|
for (int i = 0; i < length; i++) {
|
|
pointer[i].c = 1;
|
|
}
|
|
}
|
|
|
|
//
|
|
// Struct field load (plus Pointer elementAt and load).
|
|
//
|
|
|
|
int doLoadInt32(Pointer<VeryLargeStruct> pointer, int length) {
|
|
int x = 0;
|
|
for (int i = 0; i < length; i++) {
|
|
x += pointer[i].c;
|
|
}
|
|
return x;
|
|
}
|
|
|
|
//
|
|
// Benchmark fixture.
|
|
//
|
|
|
|
// Number of repeats: 1000
|
|
// * CPU: Intel(R) Xeon(R) Gold 6154
|
|
// * Architecture: x64
|
|
// * 150000 - 465000 us (without optimizations)
|
|
// * 14 - ??? us (expected with optimizations, on par with typed data)
|
|
const N = 1000;
|
|
|
|
class FieldLoadStore extends BenchmarkBase {
|
|
Pointer<VeryLargeStruct> pointer;
|
|
FieldLoadStore() : super('FfiStruct.FieldLoadStore');
|
|
|
|
@override
|
|
void setup() => pointer = calloc(N);
|
|
@override
|
|
void teardown() => calloc.free(pointer);
|
|
|
|
@override
|
|
void run() {
|
|
doStoreInt32(pointer, N);
|
|
final int x = doLoadInt32(pointer, N);
|
|
if (x != N) {
|
|
throw Exception('$name: Unexpected result: $x');
|
|
}
|
|
}
|
|
}
|
|
|
|
//
|
|
// Main driver.
|
|
//
|
|
|
|
void main() {
|
|
final benchmarks = [
|
|
() => FieldLoadStore(),
|
|
];
|
|
for (final benchmark in benchmarks) {
|
|
benchmark().report();
|
|
}
|
|
}
|
|
|
|
//
|
|
// Test struct.
|
|
//
|
|
class VeryLargeStruct extends Struct {
|
|
@Int8()
|
|
int a;
|
|
|
|
@Int16()
|
|
int b;
|
|
|
|
@Int32()
|
|
int c;
|
|
|
|
@Int64()
|
|
int d;
|
|
|
|
@Uint8()
|
|
int e;
|
|
|
|
@Uint16()
|
|
int f;
|
|
|
|
@Uint32()
|
|
int g;
|
|
|
|
@Uint64()
|
|
int h;
|
|
|
|
@IntPtr()
|
|
int i;
|
|
|
|
@Double()
|
|
double j;
|
|
|
|
@Float()
|
|
double k;
|
|
|
|
Pointer<VeryLargeStruct> parent;
|
|
|
|
@IntPtr()
|
|
int numChildren;
|
|
|
|
Pointer<VeryLargeStruct> children;
|
|
|
|
@Int8()
|
|
int smallLastField;
|
|
}
|