This is part of the effort for asan to support Windows 64 bit.
The large offset is being tested on Windows 10 (which has larger usable
virtual address space than Windows 8 or earlier)
Details
Diff Detail
Event Timeline
lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp | ||
---|---|---|
755 ↗ | (On Diff #61274) | Don't change this. This code is suspicious and seems to have either bit-rotted or still only support Linux. |
lib/Transforms/Instrumentation/AddressSanitizer.cpp | ||
82 | Since all the other 1-bit-set constants around here use 1ULL << XX, can you switch to 1ULL << 45? |
lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp | ||
---|---|---|
755 ↗ | (On Diff #61277) | Agree, this will break linux instrumentation. Note: Google Test filter = AddressSanitizer.asm_rw [==========] Running 1 test from 1 test case. [----------] Global test environment set-up. [----------] 1 test from AddressSanitizer [ RUN ] AddressSanitizer.asm_rw /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:135: Failure Death test: asm_write(&buf[1], static_cast<T>(0)) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:135: Failure Death test: asm_write(&buf[1], static_cast<T>(0)) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:135: Failure Death test: asm_write(&buf[1], static_cast<T>(0)) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:135: Failure Death test: asm_write(&buf[1], static_cast<T>(0)) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:149: Failure Death test: asm_write<__m128i>((__m128i*) p, val) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:158: Failure Death test: asm_read(&buf[1]) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:158: Failure Death test: asm_read(&buf[1]) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:158: Failure Death test: asm_read(&buf[1]) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:158: Failure Death test: asm_read(&buf[1]) Result: failed to die. Error msg: [ DEATH ] /usr/local/google/home/etienneb/llvm/llvm/projects/compiler-rt/lib/asan/tests/asan_asm_test.cc:170: Failure Death test: asm_read<__m128i>((__m128i*) p) Result: failed to die. Error msg: [ DEATH ] [ FAILED ] AddressSanitizer.asm_rw (165 ms) [----------] 1 test from AddressSanitizer (165 ms total) |
lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp | ||
---|---|---|
754 ↗ | (On Diff #61292) | It's still not valid. |
lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp | ||
---|---|---|
754 ↗ | (On Diff #61292) | This class doesn't get instantiated if the target is not Linux on x86-64. This is also not the way to make it support Windows. You can't use the pre-processor to support it, since we might be cross-compiling. |
X86AsmInstrumentation * CreateX86AsmInstrumentation(const MCTargetOptions &MCOptions, const MCContext &Ctx, const MCSubtargetInfo *&STI) { Triple T(STI->getTargetTriple()); const bool hasCompilerRTSupport = T.isOSLinux(); if (ClAsanInstrumentAssembly && hasCompilerRTSupport && MCOptions.SanitizeAddress) { if (STI->getFeatureBits()[X86::Mode32Bit] != 0) return new X86AddressSanitizer32(STI); if (STI->getFeatureBits()[X86::Mode64Bit] != 0) return new X86AddressSanitizer64(STI); } return new X86AsmInstrumentation(STI); }
Looks like, instrumentation of inline asm is only for Linux. On windows, it is not used. Also, windows 64's Microsoft compiler has no support for inline asm anyway.
lgtm
We could have a test in llvm/test/Instrumentation/AddressSanitizer/win64.ll like the freebsd.ll test, but it seems fairly trivial and low value.
lib/Transforms/Instrumentation/AddressSanitizer.cpp | ||
---|---|---|
403–404 | clang-format would put the 'else' on the line with the previous '}'. |
Since all the other 1-bit-set constants around here use 1ULL << XX, can you switch to 1ULL << 45?