Skip to content

Commit d6947bb

Browse files
author
Tobi Popoola
committed
1. Syntax plugin forgets function and adds __builtin_unreachable(); 2. Test modifed to suit updates
1 parent ed39290 commit d6947bb

File tree

4 files changed

+23
-11
lines changed

4 files changed

+23
-11
lines changed

clang/examples/PrintTokensSyntax/PrintTokensSyntax.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class PrintTokensHandler : public SyntaxHandler {
3030
OS.write_escaped(PP.getSpelling(Tok));
3131
}
3232
OS << "\";\n";
33-
//write some functions
34-
OS << "void doStuff () {\n";
33+
// Rewrite syntax original function.
34+
OS << getDeclText(PP,D) << "{\n";
3535
OS << "printf(\"%s\",tokens);\n";
3636
OS <<"}\n";
3737
}

clang/include/clang/Parse/Parser.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -3117,7 +3117,6 @@ class SyntaxHandler {
31173117
std::string Name;
31183118

31193119
virtual void anchor();
3120-
31213120
public:
31223121
SyntaxHandler() = default;
31233122
explicit SyntaxHandler(StringRef name) : Name(name) {}
@@ -3128,6 +3127,8 @@ class SyntaxHandler {
31283127
CachedTokens &Toks,
31293128
llvm::raw_string_ostream &OS) = 0;
31303129
virtual void AddToPredefines(llvm::raw_string_ostream &OS) = 0;
3130+
/// Utility function returns actual text of a declarator.
3131+
StringRef getDeclText(Preprocessor &PP,Declarator &D);
31313132
};
31323133

31333134
/// Registry of syntax handlers added by plugins

clang/lib/Parse/Parser.cpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ using namespace clang;
2525
LLVM_INSTANTIATE_REGISTRY(SyntaxHandlerRegistry)
2626

2727
void SyntaxHandler::anchor() {}
28-
28+
// Utility function returning actual text for a declarrator.
29+
llvm::StringRef SyntaxHandler::getDeclText(Preprocessor &PP,Declarator &D){
30+
auto DeclCharRange = Lexer::getAsCharRange (D.getSourceRange(),
31+
PP.getSourceManager(), PP.getLangOpts());
32+
auto DeclText= Lexer::getSourceText (DeclCharRange,
33+
PP.getSourceManager(), PP.getLangOpts());
34+
return DeclText;
35+
}
2936
namespace {
3037
/// A comment handler that passes comments found by the preprocessor
3138
/// to the parser action.
@@ -1193,9 +1200,10 @@ void Parser::ProcessPluginSyntax(ParsingDeclarator &D) {
11931200

11941201
std::string Replacement;
11951202
llvm::raw_string_ostream ReplacementOS(Replacement);
1196-
// Function to be forgotten left empty. Could result to warnings,
1197-
// possible solution is to user __builtin_unreachable();.
11981203
ReplacementOS << "\n{\n";
1204+
// Place __builtin_unreachable(); in the forgotten function. This
1205+
// is done to avoid warnings from the compiler.
1206+
ReplacementOS << "__builtin_unreachable();\n";
11991207
ReplacementOS << "\n}\n";
12001208

12011209
// Provide the token stream to the plugin and get back the replacement text.

clang/test/Frontend/plugin-syntax-print-tokens.cpp

+8-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@
1313

1414
//CHECK: define dso_local void @_Z5__fn1v() #0 {
1515
//CHECK-NEXT: entry:
16-
//CHECK-NEXT: ret void
16+
//CHECK-NEXT: unreachable
1717
//CHECK-NEXT: }
1818

1919

20-
//CHECK: define dso_local void @_Z7doStuffv() #1 {
20+
21+
//CHECK: define dso_local void @_Z3fn1v() #1 {
2122
//CHECK-NEXT: entry:
22-
//CHECK-NEXT: %0 = load i8*, i8** @_ZL6tokens, align 8
23-
//CHECK-NEXT: %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str, i64 0, i64 0), i8* %0)
24-
//CHECK-NEXT: ret void
23+
//CHECK-NEXT: %0 = load i8*, i8** @_ZL6tokens, align 8
24+
//CHECK-NEXT: %call = call i32 (i8*, ...) @printf(i8* getelementptr inbounds ([3 x i8], [3 x i8]* @.str, i64 0, i64 0), i8* %0)
25+
//CHECK-NEXT: ret void
2526
//CHECK-NEXT: }
2627

2728

2829

30+
31+

0 commit comments

Comments
 (0)