Skip to content

Commit a4a8254

Browse files
committed
[clang] Rename all AST/Interp stuff to AST/ByteCode
"Interp" clashes with the clang interpreter and people often confuse this.
1 parent 486adc5 commit a4a8254

File tree

123 files changed

+26
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+26
-26
lines changed

clang/docs/ClangFormattedStatus.rst

Lines changed: 1 addition & 1 deletion

clang/docs/tools/clang-formatted-files.txt

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -322,24 +322,24 @@ clang/lib/APINotes/APINotesTypes.cpp
322322
clang/lib/APINotes/APINotesYAMLCompiler.cpp
323323
clang/lib/AST/DataCollection.cpp
324324
clang/lib/AST/Linkage.h
325-
clang/lib/AST/Interp/ByteCodeGenError.cpp
326-
clang/lib/AST/Interp/ByteCodeGenError.h
327-
clang/lib/AST/Interp/Context.cpp
328-
clang/lib/AST/Interp/Context.h
329-
clang/lib/AST/Interp/Descriptor.cpp
330-
clang/lib/AST/Interp/Disasm.cpp
331-
clang/lib/AST/Interp/EvalEmitter.h
332-
clang/lib/AST/Interp/Frame.cpp
333-
clang/lib/AST/Interp/Frame.h
334-
clang/lib/AST/Interp/InterpState.h
335-
clang/lib/AST/Interp/Opcode.h
336-
clang/lib/AST/Interp/Pointer.cpp
337-
clang/lib/AST/Interp/PrimType.cpp
338-
clang/lib/AST/Interp/Record.h
339-
clang/lib/AST/Interp/Source.cpp
340-
clang/lib/AST/Interp/Source.h
341-
clang/lib/AST/Interp/State.cpp
342-
clang/lib/AST/Interp/State.h
325+
clang/lib/AST/ByteCode/ByteCodeGenError.cpp
326+
clang/lib/AST/ByteCode/ByteCodeGenError.h
327+
clang/lib/AST/ByteCode/Context.cpp
328+
clang/lib/AST/ByteCode/Context.h
329+
clang/lib/AST/ByteCode/Descriptor.cpp
330+
clang/lib/AST/ByteCode/Disasm.cpp
331+
clang/lib/AST/ByteCode/EvalEmitter.h
332+
clang/lib/AST/ByteCode/Frame.cpp
333+
clang/lib/AST/ByteCode/Frame.h
334+
clang/lib/AST/ByteCode/InterpState.h
335+
clang/lib/AST/ByteCode/Opcode.h
336+
clang/lib/AST/ByteCode/Pointer.cpp
337+
clang/lib/AST/ByteCode/PrimType.cpp
338+
clang/lib/AST/ByteCode/Record.h
339+
clang/lib/AST/ByteCode/Source.cpp
340+
clang/lib/AST/ByteCode/Source.h
341+
clang/lib/AST/ByteCode/State.cpp
342+
clang/lib/AST/ByteCode/State.h
343343
clang/lib/ASTMatchers/GtestMatchers.cpp
344344
clang/lib/ASTMatchers/Dynamic/Marshallers.cpp
345345
clang/lib/Basic/Attributes.cpp
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

clang/lib/AST/ExprConstShared.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//===----------------------------------------------------------------------===//
88
//
99
// Shared functionality between the new constant expression
10-
// interpreter (AST/Interp/) and the current one (ExprConstant.cpp).
10+
// interpreter (AST/ByteCode/) and the current one (ExprConstant.cpp).
1111
//
1212
//===----------------------------------------------------------------------===//
1313

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

clang/unittests/AST/Interp/Descriptor.cpp renamed to clang/unittests/AST/ByteCode/Descriptor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "../../../lib/AST/Interp/Descriptor.h"
2-
#include "../../../lib/AST/Interp/Context.h"
3-
#include "../../../lib/AST/Interp/Program.h"
1+
#include "../../../lib/AST/ByteCode/Descriptor.h"
2+
#include "../../../lib/AST/ByteCode/Context.h"
3+
#include "../../../lib/AST/ByteCode/Program.h"
44
#include "clang/AST/ASTContext.h"
55
#include "clang/AST/Decl.h"
66
#include "clang/ASTMatchers/ASTMatchFinder.h"

clang/unittests/AST/Interp/toAPValue.cpp renamed to clang/unittests/AST/ByteCode/toAPValue.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#include "../../../lib/AST/Interp/Context.h"
2-
#include "../../../lib/AST/Interp/Descriptor.h"
3-
#include "../../../lib/AST/Interp/Program.h"
1+
#include "../../../lib/AST/ByteCode/Context.h"
2+
#include "../../../lib/AST/ByteCode/Descriptor.h"
3+
#include "../../../lib/AST/ByteCode/Program.h"
44
#include "clang/AST/ASTContext.h"
55
#include "clang/AST/Decl.h"
66
#include "clang/ASTMatchers/ASTMatchFinder.h"

0 commit comments

Comments
 (0)