search for: llvmdemangl

Displaying 15 results from an estimated 15 matches for "llvmdemangl".

Did you mean: llvmdemangle
2017 Jul 31
1
exit block
Yes, that’s right. Some LLVM terminology though: The blocks you mention, are called the “exiting blocks” of the loop, and the blocks outside the loop (that are the targets of these exiting blocks) are called the exit blocks. getExitingBlocks in LoopInfoImpl.h is the code you’re interested in. By definition: one of the successor’s of the exiting block is an exit block, and it should have another
2017 Jul 30
2
exit block
Hello, I have a question about exit blocks : is it true that every loop's exit block will contain only those comparisons that will lead to exit or to continue execution in loop? I have tried many examples , after optimizations it seems to be true, but does it have to be so? -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 Sep 17
2
build llvm fails under win7 x64/VS2017
...-> seems related to https://bugs.llvm.org/show_bug.cgi?id=38874 ... CMake Warning at utils/benchmark/CMakeLists.txt:234 (message):   Using std::regex with exceptions disabled is not fully supported and later some linker errors LINK : fatal error LNK1104: cannot open file '..\..\Debug\lib\LLVMDemangle.lib' [D:\projects\fun\jit_tests\llvm40\llvm40-build\lib\Support\LLVMSupport.vcxproj] ... LINK : fatal error LNK1104: cannot open file '..\..\..\lib\Debug\benchmark.lib' [D:\projects\fun\jit_tests\llvm40\llvm40-build\utils\benchmark\src\benchmark_main.vcxproj] ... LINK : fatal error...
2018 May 14
1
Unable to build 'lld' on Mac OS 10.9
...SystemZ -- Targeting X86 -- Targeting XCore -- LLD version: 7.0.0 -- Configuring done     -- Generating done -- Build files have been writtento: /testlocation/llvm_lld/build   4.     But on running ‘make install’, following erroris observed: $ make install Scanning dependencies of targetLLVMDemangle [ 0%] Building CXX objectlib/Demangle/CMakeFiles/LLVMDemangle.dir/ItaniumDemangle.cpp.o [ 0%] Linking CXX static library ../libLLVMDemangle.a [ 0%] Built target LLVMDemangle Scanning dependencies of targetLLVMSupport [ 0%] Building CXX objectlib/Support/CMakeFiles/LLVMSupport.dir/AMDGPUMetada...
2019 Jan 23
2
Windows/Clang build instrumented/PGO
...:0.0 /machine:x64 -fuse-ld=lld /STACK:10000000 -fprofile-instr-generate='C:\code\clang-builder\build\instrumented\profiles\%4m.profraw' /INCREMENTAL:NO /subsystem:console lib\LLVMSupport.lib lib\LLVMTableGen.lib lib\LLVMSupport.lib psapi.lib shell32.lib ole32.lib uuid.lib advapi32.lib lib\LLVMDemangle.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib && cmd.exe /C "cd /D C:\code\clang-builder\build\instrumented\utils\TableGen && CMAKE_OBJCOPY-NOTFOUND --only-keep-debug C:/code/clang-builder/build/instrum...
2017 Jun 28
2
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...o library compiled without it and I still get the same errors. Sorry, I could not find any trivial code that has the same issue yet. Following is the output of the compilation process: yawmoo at yawmoo-MRNM3AP:~/Desktop/clfs/sources/llvm-build-native-with-lld$ cmake --build . [ 0%] Built target LLVMDemangle [ 3%] Built target LLVMSupport [ 3%] Built target LLVMTableGen [ 4%] Built target obj.llvm-tblgen [ 4%] Built target llvm-tblgen [ 4%] Built target AttributeCompatFuncTableGen [ 4%] Built target intrinsics_gen [ 6%] Built target LLVMCore [ 6%] Built target LLVMIRReader [ 13%] Built target...
2017 Jun 28
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...>> >> Sorry, I could not find any trivial code that has the same issue yet. >> >> Following is the output of the compilation process: >> >> yawmoo at yawmoo-MRNM3AP:~/Desktop/clfs/sources/llvm-build-native-with-lld$ cmake --build . >> [ 0%] Built target LLVMDemangle >> [ 3%] Built target LLVMSupport >> [ 3%] Built target LLVMTableGen >> [ 4%] Built target obj.llvm-tblgen >> [ 4%] Built target llvm-tblgen >> [ 4%] Built target AttributeCompatFuncTableGen >> [ 4%] Built target intrinsics_gen >> [ 6%] Built target...
2017 Jun 28
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...find any trivial code that has the same issue yet. >>> >>> Following is the output of the compilation process: >>> >>> yawmoo at yawmoo-MRNM3AP:~/Desktop/clfs/sources/llvm-build-native-with-lld$ cmake --build . >>> [ 0%] Built target LLVMDemangle >>> [ 3%] Built target LLVMSupport >>> [ 3%] Built target LLVMTableGen >>> [ 4%] Built target obj.llvm-tblgen >>> [ 4%] Built target llvm-tblgen >>> [ 4%] Built target AttributeCompatFuncTableGen >>> [ 4%] Built ta...
2018 Sep 17
10
Should functions returning bool return true or false on success?
Hi, in https://reviews.llvm.org/D52143 there's some uncertainty if LLVM code prefers if (!Function()) // Call to function failed, deal with it or if (Function()) // Call to function failed, deal with it (Note that this is about functions returning bool, not int.) Folks on that review feel that returning true on success is probably what we want, but it's not documented
2017 Jun 28
2
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...that has the same issue yet. >>>> >>>> Following is the output of the compilation process: >>>> >>>> yawmoo at yawmoo-MRNM3AP:~/Desktop/clfs/sources/llvm-build-native-with-lld$ cmake --build . >>>> [ 0%] Built target LLVMDemangle >>>> [ 3%] Built target LLVMSupport >>>> [ 3%] Built target LLVMTableGen >>>> [ 4%] Built target obj.llvm-tblgen >>>> [ 4%] Built target llvm-tblgen >>>> [ 4%] Built target AttributeCompatFuncTableGen >>...
2017 Jun 30
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
...issue yet. >>>>>> >>>>>> Following is the output of the compilation process: >>>>>> >>>>>> yawmoo at yawmoo-MRNM3AP:~/Desktop/clfs/sources/llvm-build-native-with-lld$ cmake --build . >>>>>> [ 0%] Built target LLVMDemangle >>>>>> [ 3%] Built target LLVMSupport >>>>>> [ 3%] Built target LLVMTableGen >>>>>> [ 4%] Built target obj.llvm-tblgen >>>>>> [ 4%] Built target llvm-tblgen >>>>>> [ 4%] Built target AttributeCompatFuncT...
2017 Jun 27
3
Building llvm with clang and lld on arm and the llvm arm backend relocation on position independent code
> On 26 Jun 2017, at 16:25, Rui Ueyama <ruiu at google.com> wrote: > > On Sun, Jun 25, 2017 at 6:40 AM, Alessandro Pistocchi via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > Hi, > > I am trying to build a completely GNU free linux toolchain for the raspberry pi. > > I successfully managed to compile llvm and clang
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
...S:STATIC= //Dependencies for target LLVMDebugInfoCodeView_LIB_DEPENDS:STATIC= //Dependencies for target LLVMDebugInfoDWARF_LIB_DEPENDS:STATIC= //Dependencies for target LLVMDebugInfoMSF_LIB_DEPENDS:STATIC= //Dependencies for target LLVMDebugInfoPDB_LIB_DEPENDS:STATIC= //Dependencies for target LLVMDemangle_LIB_DEPENDS:STATIC= //Dependencies for target LLVMExecutionEngine_LIB_DEPENDS:STATIC= //Dependencies for target LLVMGlobalISel_LIB_DEPENDS:STATIC= //Dependencies for target LLVMHello_LIB_DEPENDS:STATIC= //Dependencies for target LLVMHexagonAsmParser_LIB_DEPENDS:STATIC= //Dependencies for targ...
2019 Apr 30
6
Disk space and RAM requirements in docs
...n/CMakeFiles 2.5M build/lib/Option 2.5M build/lib/Demangle 2.4M build/tools/clang/test/Headers/Output/opencl-c-header.cl.tmp/3S5GBDT3PW7J7 2.4M build/tools/clang/lib/Headers 2.4M build/lib/Target/Mips/Disassembler/CMakeFiles 2.4M build/lib/Target/Mips/Disassembler 2.4M build/lib/Demangle/CMakeFiles/LLVMDemangle.dir 2.4M build/lib/Demangle/CMakeFiles 2.3M build/lib/Target/Mips/Disassembler/CMakeFiles/LLVMMipsDisassembler.dir 2.3M build/include/llvm 2.3M build/include 2.2M build/tools/llvm-size/CMakeFiles/llvm-size.dir 2.2M build/tools/llvm-size/CMakeFiles 2.2M build/tools/llvm-size 2.2M build/tools/clang/...