string-stringat-comp.js 1.16 KB
Newer Older
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
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

const input = 'äϠ�𝌆 Lorem ipsum test test';

function helper(fn) {
  var sum = 0;
  for (var i = 0; i < input.length; i++) {
    sum += fn(input, i, i);
  }
  return sum;
}

function charCodeAt(str, i) {
  return str.charCodeAt(i) === 116;
}

function charCodeAtBoth(str, i, j) {
  return str.charCodeAt(j) == str.charCodeAt(i);
}

function charAt(str, i) {
  return 't' == str.charAt(i);
}

function charAtNever(str, i) {
  return '𝌆' == str.charAt(i);
}

function charAtBoth(str, i, j) {
  return str.charAt(j) == str.charAt(i);
}

function stringIndex(str, i) {
  return str[i] === 't';
}

39 40 41 42 43 44
createSuiteWithWarmup('charCodeAt_const', 1, () => helper(charCodeAt));
createSuiteWithWarmup('charCodeAt_both', 1, () => helper(charCodeAtBoth));
createSuiteWithWarmup('charAt_const', 1, () => helper(charAt));
createSuiteWithWarmup('charAt_never', 1, () => helper(charAtNever));
createSuiteWithWarmup('charAt_both', 1, () => helper(charAtBoth));
createSuiteWithWarmup('stringIndex_const', 1, () => helper(stringIndex));