search for: force_on

Displaying 10 results from an estimated 10 matches for "force_on".

2016 Nov 16
4
[RFC] Runtime checks for ABI breaking build of LLVM
...s of LLVM is that an assert build isn’t ABI compatible with a release build. The CMake flags that controls this behavior is LLVM_ABI_BREAKING_CHECKS ( LLVM_ABI_BREAKING_CHECKS:STRING Used to decide if LLVM should be built with ABI breaking checks or not. Allowed values are WITH_ASSERTS (default), FORCE_ON and FORCE_OFF. WITH_ASSERTS turns on ABI breaking checks in an assertion enabled build. FORCE_ON (FORCE_OFF) turns them on (off) irrespective of whether normal (NDEBUG-based) assertions are enabled or not. A version of LLVM built with ABI breaking checks is not ABI compatible with a version built...
2016 Nov 16
2
[RFC] Runtime checks for ABI breaking build of LLVM
...d. >> >> The CMake flags that controls this behavior is LLVM_ABI_BREAKING_CHECKS ( >> >> *LLVM_ABI_BREAKING_CHECKS*:STRING >> Used to decide if LLVM should be built with ABI breaking checks or >> not. Allowed values >> are WITH_ASSERTS (default), FORCE_ON and FORCE_OFF. WITH_ASSERTS turns >> on ABI breaking checks in an assertion enabled >> build. FORCE_ON (FORCE_OFF) turns them on (off) irrespective of >> whether normal (NDEBUG-based) assertions are enabled or not. A >> version of LLVM built with ABI breaking c...
2019 Dec 21
13
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
This patchset converts the intel iommu driver to the dma-iommu api. While converting the driver I exposed a bug in the intel i915 driver which causes a huge amount of artifacts on the screen of my laptop. You can see a picture of it here: https://github.com/pippy360/kernelPatches/blob/master/IMG_20191219_225922.jpg This issue is most likely in the i915 driver and is most likely caused by the
2019 Dec 21
13
[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
This patchset converts the intel iommu driver to the dma-iommu api. While converting the driver I exposed a bug in the intel i915 driver which causes a huge amount of artifacts on the screen of my laptop. You can see a picture of it here: https://github.com/pippy360/kernelPatches/blob/master/IMG_20191219_225922.jpg This issue is most likely in the i915 driver and is most likely caused by the
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote: [ brutal-snip ] ... > [ TODO#S: Before doing a 2nd build (and in a 3rd run using more > optimized binaries) ] > > How do I anable LTO via CMAKE? > > > LLVM_ENALBLE_LTO=On > [ v4 of my build-script attached ] Hi Chris, thanks for the response! That seems to work (see below). $ cd
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a /lot/ of errors like this (strangely I hit none of these in check-llvm, only in check-clang): Any ideas? ==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes at address 0x631000014800 ==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...//Dependencies for target LLVMXCoreDesc_LIB_DEPENDS:STATIC= //Dependencies for target LLVMXCoreDisassembler_LIB_DEPENDS:STATIC= //Dependencies for target LLVMXCoreInfo_LIB_DEPENDS:STATIC= //Dependencies for target LLVMXRay_LIB_DEPENDS:STATIC= //Enable abi-breaking checks. Can be WITH_ASSERTS, FORCE_ON or // FORCE_OFF. LLVM_ABI_BREAKING_CHECKS:STRING=WITH_ASSERTS //Append the version control system revision id to LLVM version LLVM_APPEND_VC_REV:BOOL=OFF //Value Computed by CMake LLVM_BINARY_DIR:STATIC=/usr/local/google/home/blaikie/dev/llvm/build/clang/debug/split/notypes/nostandalone //PATH t...
2011 Jun 02
0
[PATCH] pci: Use pr_<level> and pr_fmt
...(void) SLAB_HWCACHE_ALIGN, NULL); if (!iommu_iova_cache) { - printk(KERN_ERR "Couldn't create iova cache\n"); + pr_err("Couldn't create iova cache\n"); ret = -ENOMEM; } @@ -3471,13 +3461,12 @@ int __init intel_iommu_init(void) if (ret) { if (force_on) panic("tboot: Failed to initialize DMARs\n"); - printk(KERN_ERR "IOMMU: dmar init failed\n"); + pr_err("dmar init failed\n"); put_iova_domain(&reserved_iova_list); iommu_exit_mempool(); return ret; } - printk(KERN_INFO - "PCI-DMA: Intel(R) Vi...
2011 Jun 02
0
[PATCH] pci: Use pr_<level> and pr_fmt
...(void) SLAB_HWCACHE_ALIGN, NULL); if (!iommu_iova_cache) { - printk(KERN_ERR "Couldn't create iova cache\n"); + pr_err("Couldn't create iova cache\n"); ret = -ENOMEM; } @@ -3471,13 +3461,12 @@ int __init intel_iommu_init(void) if (ret) { if (force_on) panic("tboot: Failed to initialize DMARs\n"); - printk(KERN_ERR "IOMMU: dmar init failed\n"); + pr_err("dmar init failed\n"); put_iova_domain(&reserved_iova_list); iommu_exit_mempool(); return ret; } - printk(KERN_INFO - "PCI-DMA: Intel(R) Vi...
2011 Jun 02
0
[PATCH] pci: Use pr_<level> and pr_fmt
...(void) SLAB_HWCACHE_ALIGN, NULL); if (!iommu_iova_cache) { - printk(KERN_ERR "Couldn't create iova cache\n"); + pr_err("Couldn't create iova cache\n"); ret = -ENOMEM; } @@ -3471,13 +3461,12 @@ int __init intel_iommu_init(void) if (ret) { if (force_on) panic("tboot: Failed to initialize DMARs\n"); - printk(KERN_ERR "IOMMU: dmar init failed\n"); + pr_err("dmar init failed\n"); put_iova_domain(&reserved_iova_list); iommu_exit_mempool(); return ret; } - printk(KERN_INFO - "PCI-DMA: Intel(R) Vi...