Commit a2aa2870 authored by Jakob Kummerow's avatar Jakob Kummerow Committed by Commit Bot

[ubsan] Fix 32-bit UBSan builds

By providing a custom implementation of __mulodi4(). This function
usually comes from libcompiler_rt, but our build system doesn't
provide that.

Bug: v8:9665
Change-Id: Ia72f0c23e83724f73ec72b404706c9a40ed861ee
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1806682
Commit-Queue: Jakob Kummerow <jkummerow@chromium.org>
Reviewed-by: 's avatarClemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#63826}
parent 9d7b4562
......@@ -3675,6 +3675,12 @@ v8_component("v8_libbase") {
]
}
if (is_ubsan && (v8_current_cpu == "x86" || v8_current_cpu == "arm" ||
v8_current_cpu == "mips")) {
# Special UBSan 32-bit requirement.
sources += [ "src/base/ubsan.cc" ]
}
if (is_tsan && !build_with_chromium) {
data += [ "tools/sanitizers/tsan_suppressions.txt" ]
}
......
// Copyright 2019 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.
#include <stdint.h>
#include <limits>
#include "src/base/build_config.h"
#if !defined(UNDEFINED_SANITIZER) || !defined(V8_TARGET_ARCH_32_BIT)
#error "This file is only needed for 32-bit UBSan builds."
#endif
// Compiling with -fsanitize=undefined on 32-bit platforms requires __mulodi4
// to be available. Usually it comes from libcompiler_rt, which our build
// doesn't provide, so here is a custom implementation (inspired by digit_mul
// in src/objects/bigint.cc).
extern "C" int64_t __mulodi4(int64_t a, int64_t b, int* overflow) {
// Multiply in 32-bit chunks.
// For inputs [AH AL]*[BH BL], the result is:
//
// [AL*BL] // r_low
// + [AL*BH] // r_mid1
// + [AH*BL] // r_mid2
// + [AH*BH] // r_high
// = [R4 R3 R2 R1] // high = [R4 R3], low = [R2 R1]
//
// Where of course we must be careful with carries between the columns.
uint64_t a_low = a & 0xFFFFFFFFu;
uint64_t a_high = static_cast<uint64_t>(a) >> 32;
uint64_t b_low = b & 0xFFFFFFFFu;
uint64_t b_high = static_cast<uint64_t>(b) >> 32;
uint64_t r_low = a_low * b_low;
uint64_t r_mid1 = a_low * b_high;
uint64_t r_mid2 = a_high * b_low;
uint64_t r_high = a_high * b_high;
uint64_t result1 = r_low + (r_mid1 << 32);
if (result1 < r_low) r_high++;
uint64_t result2 = result1 + (r_mid2 << 32);
if (result2 < result1) r_high++;
r_high += (r_mid1 >> 32) + (r_mid2 >> 32);
int64_t result = static_cast<int64_t>(result2);
uint64_t result_sign = (result >> 63);
uint64_t expected_result_sign = (a >> 63) ^ (b >> 63);
*overflow = (r_high > 0 || result_sign != expected_result_sign) ? 1 : 0;
return result;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment