index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
AST
/
Stmt.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[OpenMP] Added parsing and semantic analysis for firstprivate clause
Alexey Bataev
2013-10-01
1
-0
/
+23
*
Add unused markings to suppress warnings.
Eli Friedman
2013-09-10
1
-3
/
+7
*
OpenMP: Data-sharing attributes analysis and clause 'shared' (fixed test thre...
Alexey Bataev
2013-09-06
1
-0
/
+30
*
Remove useless reinterpret_casts from Stmt.cpp
Pavel Labath
2013-09-03
1
-9
/
+9
*
Revert "OpenMP: Data-sharing attributes analysis and clause 'shared'"
Rafael Espindola
2013-09-03
1
-30
/
+0
*
OpenMP: Data-sharing attributes analysis and clause 'shared'
Alexey Bataev
2013-09-03
1
-0
/
+30
*
Constify some more ASTContext& uses.
Craig Topper
2013-08-22
1
-13
/
+14
*
Constify the ASTContext& passed to Stmt creation functions. Also constify the...
Craig Topper
2013-08-22
1
-43
/
+38
*
Revert accidental commit.
Craig Topper
2013-08-21
1
-56
/
+59
*
Replace avx-512 with avx512f to match llvm side and what gcc patches appear t...
Craig Topper
2013-08-21
1
-59
/
+56
*
Revert r188756 because some other changes snuck in with it.
Craig Topper
2013-08-20
1
-56
/
+59
*
Add AVX-512 feature flag and knl cpu to clang.
Craig Topper
2013-08-20
1
-59
/
+56
*
Make the version of Stmt::operator new that takes ASTContext* call the ASTCon...
Craig Topper
2013-08-19
1
-5
/
+0
*
Revert r188644 to unbreak buildbots.
Craig Topper
2013-08-18
1
-0
/
+5
*
Remove Stmt::operator new that takes a ASTContext*. All callers use the ASTCo...
Craig Topper
2013-08-18
1
-5
/
+0
*
Remove throw() from Stmt::operator new so the compiler will omit the null che...
Craig Topper
2013-08-18
1
-2
/
+2
*
Make expression allocation methods use a 'const' reference to the ASTContext ...
Craig Topper
2013-08-18
1
-2
/
+2
*
OpenMP: basic support for #pragma omp parallel
Alexey Bataev
2013-07-19
1
-0
/
+52
*
Delete dead code.
Eli Friedman
2013-06-27
1
-22
/
+0
*
First pass of semantic analysis for init-captures: check the initializer, build
Richard Smith
2013-05-16
1
-1
/
+1
*
Implement template support for CapturedStmt
Wei Pan
2013-05-04
1
-4
/
+6
*
Serialization for captured statements
Ben Langmuir
2013-05-03
1
-2
/
+2
*
Move parsing of identifiers in MS-style inline assembly into
John McCall
2013-05-03
1
-14
/
+27
*
Sema for Captured Statements
Tareq A. Siraj
2013-04-16
1
-8
/
+8
*
Implement CapturedStmt AST
Tareq A. Siraj
2013-04-16
1
-0
/
+102
*
Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h.
Jordan Rose
2013-02-08
1
-3
/
+4
*
ArrayRefize CXXTryStmt.
Nico Weber
2012-12-29
1
-7
/
+6
*
ArrayRefize a CompoundStmt constructor.
Nico Weber
2012-12-29
1
-6
/
+6
*
Fix for PR12222.
Erik Verbruggen
2012-12-25
1
-62
/
+45
*
Include pruning and general cleanup.
Benjamin Kramer
2012-12-01
1
-3
/
+4
*
Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...
Benjamin Kramer
2012-12-01
1
-0
/
+10
*
[ms-inline asm] Move some logic around to simplify the interface between the
Chad Rosier
2012-10-16
1
-17
/
+11
*
Revert r163083 per chandlerc's request.
Joao Matos
2012-09-04
1
-11
/
+0
*
[ms-inline asm] Fix an illegal index and an 80-column violation.
Chad Rosier
2012-09-04
1
-7
/
+7
*
Implemented parsing and AST support for the MS __leave exception statement. A...
Joao Matos
2012-09-02
1
-0
/
+11
*
[ms-inline asm] Have generateAsmString() return the AsmString computed by Sema.
Chad Rosier
2012-08-28
1
-1
/
+1
*
[ms-inline asm] Add constraints to MSAsmStmt. We don't currently compute
Chad Rosier
2012-08-28
1
-17
/
+10
*
[ms-inline asm] Use dyn_cast<> here to simplify logic.
Chad Rosier
2012-08-28
1
-30
/
+24
*
[ms-inline asm] Make the AsmStmt class non-virtual.
Chad Rosier
2012-08-28
1
-0
/
+54
*
[ms-inline asm] Hoist more common code into the AsmStmt base class. Add stubs
Chad Rosier
2012-08-28
1
-12
/
+25
*
[ms-inline asm] Add virtual function, getClobber, that returns a StringRef.
Chad Rosier
2012-08-27
1
-0
/
+4
*
[ms-inline asm] Rename GenerateAsmString to generateAsmString to conform with
Chad Rosier
2012-08-27
1
-2
/
+9
*
[ms-inline asm] Hoist common logic into the AsmStmt base class.
Chad Rosier
2012-08-27
1
-7
/
+5
*
[ms-inline asm] Add a new base class, AsmStmt, for the GCCAsmStmt and MSAsmStmt
Chad Rosier
2012-08-27
1
-4
/
+4
*
[ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt.
Chad Rosier
2012-08-25
1
-17
/
+18
*
[ms-inline asm] Refactor code. No functional change intended.
Chad Rosier
2012-08-24
1
-0
/
+21
*
[ms-inline asm] Add the basic APIs for Exprs to the MSAsmStmt AST. Next we need
Chad Rosier
2012-08-24
1
-2
/
+23
*
[ms-inline asm] Remove old cruft now that MS-style asms their own code path.
Chad Rosier
2012-08-20
1
-4
/
+3
*
[ms-inline asm] Add inputs and outputs to AST. No functional change.
Chad Rosier
2012-08-16
1
-6
/
+15
*
[ms-inline asm] Add the left brace source location and improve the pretty
Chad Rosier
2012-08-15
1
-2
/
+3
[next]