- Feb 25, 2016
-
-
Jonathan Peyton authored
This change introduces the new OpenMP 4.5 affinity api surrounding OpenMP Places. There are six new entry points: Typically called in serial region: * omp_get_num_places - returns the number of places available to the execution environment in the place list. * omp_get_place_num_procs - returns the number of processors available to the execution environment in the specified place. * omp_get_place_proc_ids - returns the numerical identifiers of the processors available to the execution environment in the specified place. Typically called inside parallel region: * omp_get_place_num - returns the place number of the place to which the encountering thread is bound. * omp_get_partition_num_places - returns the number of places in the place partition of the innermost implicit task. * omp_get_partition_place_nums - returns the list of place numbers corresponding to the places in the place-var ICV of the innermost implicit task. Differential Revision: http://reviews.llvm.org/D17417 llvm-svn: 261915
-
Rui Ueyama authored
llvm-svn: 261914
-
Rui Ueyama authored
llvm-svn: 261913
-
Rui Ueyama authored
This patch implements the same algorithm as LLD/COFF's ICF. I'm not going to repeat the same description about how it works, so you want to read the comment in ICF.cpp in this patch if you want to know the details. This algorithm should be more powerful than the ICF algorithm implemented in GNU gold. It can even merge mutually-recursive functions (which is harder than one might think). ICF is a fairly effective size optimization. Here are some examples. LLD: 37.14 MB -> 35.80 MB (-3.6%) Clang: 59.41 MB -> 57.80 MB (-2.7%) The lacking feature is "safe" version of ICF. This merges all identical sections. That is not compatible with a C/C++ language requirement that two distinct functions must have distinct addresses. But as long as your program do not rely on the pointer equality (which is in many cases true), your program should work with the feature. LLD works fine for example. GNU gold implements so-called "safe ICF" that identifies functions that are safe to merge by heuristics -- for example, gold thinks that constructors are safe to merge because there is no way to take an address of a constructor in C++. We have a different idea which David Majnemer suggested that we add NOPs at beginning of merged functions so that two or more pointers can have distinct values. We can do whichever we want, but this patch does not include neither. http://reviews.llvm.org/D17529 llvm-svn: 261912
-
Chris Bieneman authored
llvm-svn: 261911
-
Hongbin Zheng authored
Introduce move constructor and move assignment operator to PostDominatorTree. llvm-svn: 261910
-
Alexey Samsonov authored
llvm-svn: 261909
-
Jonathan Peyton authored
The maximum task priority value is read from envirable: OMP_MAX_TASK_PRIORITY. But as of now, nothing is done with it. We just handle the environment variable and add the new api: omp_get_max_task_priority() which returns that value or zero if it is not set. Differential Revision: http://reviews.llvm.org/D17411 llvm-svn: 261908
-
Hemant Kulkarni authored
http://reviews.llvm.org/D17523 llvm-svn: 261907
-
Jonathan Peyton authored
The monotonic/non-monotonic flags are sent to the runtime via the sched_type by setting the 30th (non-monotonic) or 29th (monotonic) bit in the sched_type. Macros are added to probe if monotonic or non-monotonic is specified (SCHEDULE_HAS_[NON]MONOTONIC & SCHEDULE_HAS_NO_MODIFIERS) and also to to get the base sched_type (SCHEDULE_WITHOUT_MODIFIERS) Currently, nothing is done with the modifiers. Also, this patch adds some comments on the use of the enumerations in at least one place where it is subtle. Differential Revision: http://reviews.llvm.org/D17406 llvm-svn: 261906
-
Hongbin Zheng authored
llvm-svn: 261905
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17571 llvm-svn: 261904
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17570 llvm-svn: 261903
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17537 llvm-svn: 261902
-
Pavel Labath authored
Summary: the python2 branch seems erroneous as it expected the object to be both a "String" and "Bytes". Fix the expectation. Reviewers: zturner Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D17545 llvm-svn: 261901
-
Bill Seurer authored
The test case compiler-rt/test/tsan/ignore_lib4.cc fails on powerpc64 big endian but not little endian. llvm-svn: 261900
-
Michael Kruse authored
The script updates a lit test case that uses FileCheck using the actual output of the 'RUN:'-lines program. Useful when updating test cases due expected output changes and diff'ing expected and actual output. llvm-svn: 261899
-
Maxim Ostapenko authored
[sanitizer] Fix third parameter in COMMON_INTERCEPTOR_WRITE_RANGE in recv and recvfrom interceptors. Pass res instead of len as third parameter to COMMON_INTERCEPTOR_WRITE_RANGE, because otherwise we can write to unrelated memory (in MSan) or get wrong report (in ASan). Differential Revision: http://reviews.llvm.org/D17608 llvm-svn: 261898
-
NAKAMURA Takumi authored
Revert r261814, "check-clang-tools: Introduce the feature target-headers", corresponding to r261893. llvm-svn: 261897
-
Marshall Clow authored
llvm-svn: 261896
-
Tim Northover authored
These should all be deferring to the "OP (literal)" variant according to the ARM ARM. llvm-svn: 261895
-
Marshall Clow authored
llvm-svn: 261894
-
Alexander Kornienko authored
llvm-svn: 261893
-
Hongbin Zheng authored
This reverts commit 4d3753b9646a69c00d234ccd6e91dc3d0ea5d643. llvm-svn: 261892
-
Hongbin Zheng authored
This reverts commit a3e5cc6a51ab5ad88d1760c63284294a4e34c018. llvm-svn: 261891
-
Hongbin Zheng authored
Revert "Introduce DominanceFrontierAnalysis to the new PassManager to compute DominanceFrontier. NFC" This reverts commit 109c38b2226a87b0be73fa7a0a8c1a81df20aeb2. llvm-svn: 261890
-
Hongbin Zheng authored
This reverts commit 8228b4d374edeb4cc0c5fddf6e1ab876918ee126. llvm-svn: 261889
-
Sanjay Patel authored
llvm-svn: 261888
-
Ben Langmuir authored
Since consumers of the AST may expect fields to be named. Patch by Brad King! llvm-svn: 261887
-
Hongbin Zheng authored
llvm-svn: 261886
-
Geoff Berry authored
Summary: Avoid special case for FP, LR CFI emission and just allow general AArch64FrameLowering::emitCalleeSavedFrameMoves() to handle them. Also, stop recalculating the stack offsets in emitCalleeSavedFrameMoves() since we can just reuse the previously calculated offset stored in the MachineFrameInfo. Depends on D17000 Reviewers: t.p.northover, rengolin, mcrosier, jmolloy Subscribers: aemerson, rengolin, mcrosier, llvm-commits Differential Revision: http://reviews.llvm.org/D17004 llvm-svn: 261885
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17571 llvm-svn: 261884
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17570 llvm-svn: 261883
-
Hongbin Zheng authored
Differential Revision: http://reviews.llvm.org/D17537 llvm-svn: 261882
-
Rafael Espindola authored
llvm-svn: 261881
-
Rafael Espindola authored
llvm-svn: 261880
-
Simon Atanasyan authored
On MIPS we need to mark symbol which has a PLT entry and requires pointer equality by STO_MIPS_PLT flag. That is necessary to help dynamic linker distinguish such symbols and MIPS lazy-binding stubs. https://sourceware.org/ml/binutils/2008-07/txt00000.txt Differential Revision: http://reviews.llvm.org/D17593 llvm-svn: 261879
-
Nikolay Haustov authored
Support all instructions with VOP1 encoding with 32 or 64-bit operands for VI subtarget: VGPR_32 and VReg_64 operand register classes VS_32 and VS_64 operand register classes with inline and literal constants Tests for VOP1 instructions. Patch by: skolton Reviewers: arsenm, tstellarAMD Review: http://reviews.llvm.org/D17194 llvm-svn: 261878
-
Sanjay Patel authored
llvm-svn: 261877
-
Michael Kruse authored
llvm-svn: 261876
-