Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ dependencies {
// QuickBuffers
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.4'
// wast
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.23'
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.25'

// Test
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
Expand Down
6 changes: 6 additions & 0 deletions src/main/java/com/github/fabienrenaud/jjb/JsonBench.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.github.fabienrenaud.jjb.data.JsonSource;
import com.github.fabienrenaud.jjb.data.JsonSourceFactory;
import io.github.wycst.wast.json.JSONVmOptions;

/**
* @author Fabien Renaud
Expand All @@ -11,6 +12,11 @@ public abstract class JsonBench {
protected static final JsonSource CLI_JSON_SOURCE = JsonSourceFactory.create();
public abstract JsonSource JSON_SOURCE();

public JsonBench() {
JSONVmOptions.disableIntrinsicCandidate();
JSONVmOptions.disableIncubatorVector();
}

public Object gson() throws Exception {
return null;
}
Expand Down