This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ff0c62802f [Clang Interpreter] Initial patch for the constexpr interpreter new 25e19b08c1 Revert [Clang Interpreter] Initial patch for the constexpr i [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/ConstantInterpreter.rst | 194 ------ include/clang/AST/ASTContext.h | 10 - include/clang/Basic/DiagnosticASTKinds.td | 2 - include/clang/Basic/LangOptions.def | 4 - include/clang/Basic/OptionalDiagnostic.h | 78 --- include/clang/Driver/Options.td | 4 - lib/AST/ASTContext.cpp | 8 - lib/AST/CMakeLists.txt | 3 - lib/AST/ExprConstant.cpp | 408 +++++++----- lib/AST/Interp/Block.cpp | 87 --- lib/AST/Interp/Block.h | 140 ----- lib/AST/Interp/ByteCodeEmitter.cpp | 175 ------ lib/AST/Interp/ByteCodeEmitter.h | 112 ---- lib/AST/Interp/ByteCodeExprGen.cpp | 578 ----------------- lib/AST/Interp/ByteCodeExprGen.h | 340 ---------- lib/AST/Interp/ByteCodeGenError.cpp | 14 - lib/AST/Interp/ByteCodeGenError.h | 46 -- lib/AST/Interp/ByteCodeStmtGen.cpp | 273 -------- lib/AST/Interp/ByteCodeStmtGen.h | 92 --- lib/AST/Interp/CMakeLists.txt | 34 - lib/AST/Interp/Context.cpp | 148 ----- lib/AST/Interp/Context.h | 100 --- lib/AST/Interp/Descriptor.cpp | 292 --------- lib/AST/Interp/Descriptor.h | 220 ------- lib/AST/Interp/Disasm.cpp | 69 --- lib/AST/Interp/EvalEmitter.cpp | 253 -------- lib/AST/Interp/EvalEmitter.h | 129 ---- lib/AST/Interp/Frame.cpp | 14 - lib/AST/Interp/Frame.h | 45 -- lib/AST/Interp/Function.cpp | 48 -- lib/AST/Interp/Function.h | 163 ----- lib/AST/Interp/Integral.h | 301 --------- lib/AST/Interp/Interp.cpp | 417 ------------- lib/AST/Interp/Interp.h | 960 ----------------------------- lib/AST/Interp/InterpFrame.cpp | 193 ------ lib/AST/Interp/InterpFrame.h | 153 ----- lib/AST/Interp/InterpStack.cpp | 76 --- lib/AST/Interp/InterpStack.h | 113 ---- lib/AST/Interp/InterpState.cpp | 74 --- lib/AST/Interp/InterpState.h | 112 ---- lib/AST/Interp/Opcode.h | 30 - lib/AST/Interp/Opcodes.td | 422 ------------- lib/AST/Interp/Pointer.cpp | 193 ------ lib/AST/Interp/Pointer.h | 353 ----------- lib/AST/Interp/Program.cpp | 364 ----------- lib/AST/Interp/Program.h | 220 ------- lib/AST/Interp/Record.cpp | 46 -- lib/AST/Interp/Record.h | 121 ---- lib/AST/Interp/Source.cpp | 39 -- lib/AST/Interp/Source.h | 118 ---- lib/AST/Interp/State.cpp | 158 ----- lib/AST/Interp/State.h | 130 ---- lib/AST/Interp/Type.cpp | 22 - lib/AST/Interp/Type.h | 114 ---- lib/Driver/ToolChains/Clang.cpp | 6 - lib/Frontend/CompilerInvocation.cpp | 4 - test/AST/Interp/cond.cpp | 11 - test/SemaCXX/constant-expression-cxx2a.cpp | 119 ++++ test/SemaCXX/constexpr-many-arguments.cpp | 4 +- test/SemaCXX/shift.cpp | 5 - utils/TableGen/CMakeLists.txt | 1 - utils/TableGen/ClangOpcodesEmitter.cpp | 360 ----------- utils/TableGen/TableGen.cpp | 6 - utils/TableGen/TableGenBackends.h | 1 - 64 files changed, 384 insertions(+), 8945 deletions(-) delete mode 100644 docs/ConstantInterpreter.rst delete mode 100644 include/clang/Basic/OptionalDiagnostic.h delete mode 100644 lib/AST/Interp/Block.cpp delete mode 100644 lib/AST/Interp/Block.h delete mode 100644 lib/AST/Interp/ByteCodeEmitter.cpp delete mode 100644 lib/AST/Interp/ByteCodeEmitter.h delete mode 100644 lib/AST/Interp/ByteCodeExprGen.cpp delete mode 100644 lib/AST/Interp/ByteCodeExprGen.h delete mode 100644 lib/AST/Interp/ByteCodeGenError.cpp delete mode 100644 lib/AST/Interp/ByteCodeGenError.h delete mode 100644 lib/AST/Interp/ByteCodeStmtGen.cpp delete mode 100644 lib/AST/Interp/ByteCodeStmtGen.h delete mode 100644 lib/AST/Interp/CMakeLists.txt delete mode 100644 lib/AST/Interp/Context.cpp delete mode 100644 lib/AST/Interp/Context.h delete mode 100644 lib/AST/Interp/Descriptor.cpp delete mode 100644 lib/AST/Interp/Descriptor.h delete mode 100644 lib/AST/Interp/Disasm.cpp delete mode 100644 lib/AST/Interp/EvalEmitter.cpp delete mode 100644 lib/AST/Interp/EvalEmitter.h delete mode 100644 lib/AST/Interp/Frame.cpp delete mode 100644 lib/AST/Interp/Frame.h delete mode 100644 lib/AST/Interp/Function.cpp delete mode 100644 lib/AST/Interp/Function.h delete mode 100644 lib/AST/Interp/Integral.h delete mode 100644 lib/AST/Interp/Interp.cpp delete mode 100644 lib/AST/Interp/Interp.h delete mode 100644 lib/AST/Interp/InterpFrame.cpp delete mode 100644 lib/AST/Interp/InterpFrame.h delete mode 100644 lib/AST/Interp/InterpStack.cpp delete mode 100644 lib/AST/Interp/InterpStack.h delete mode 100644 lib/AST/Interp/InterpState.cpp delete mode 100644 lib/AST/Interp/InterpState.h delete mode 100644 lib/AST/Interp/Opcode.h delete mode 100644 lib/AST/Interp/Opcodes.td delete mode 100644 lib/AST/Interp/Pointer.cpp delete mode 100644 lib/AST/Interp/Pointer.h delete mode 100644 lib/AST/Interp/Program.cpp delete mode 100644 lib/AST/Interp/Program.h delete mode 100644 lib/AST/Interp/Record.cpp delete mode 100644 lib/AST/Interp/Record.h delete mode 100644 lib/AST/Interp/Source.cpp delete mode 100644 lib/AST/Interp/Source.h delete mode 100644 lib/AST/Interp/State.cpp delete mode 100644 lib/AST/Interp/State.h delete mode 100644 lib/AST/Interp/Type.cpp delete mode 100644 lib/AST/Interp/Type.h delete mode 100644 test/AST/Interp/cond.cpp delete mode 100644 utils/TableGen/ClangOpcodesEmitter.cpp