Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bpftrace
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bpftrace
Commits
5982c742
Commit
5982c742
authored
Jan 16, 2019
by
williangaspar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes:
https://github.com/iovisor/bpftrace/issues/84
parent
342fd6d0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
1 deletion
+64
-1
src/lexer.l
src/lexer.l
+1
-1
tests/codegen.cpp
tests/codegen.cpp
+1
-0
tests/codegen/struct_semicolon.cpp
tests/codegen/struct_semicolon.cpp
+62
-0
No files found.
src/lexer.l
View file @
5982c742
...
@@ -111,7 +111,7 @@ pid|tid|cgroup|uid|gid|nsecs|cpu|comm|stack|ustack|arg[0-9]|retval|func|probe|cu
...
@@ -111,7 +111,7 @@ pid|tid|cgroup|uid|gid|nsecs|cpu|comm|stack|ustack|arg[0-9]|retval|func|probe|cu
struct|union { BEGIN(STRUCT); buffer = std::string(yytext); open_brackets = 0; }
struct|union { BEGIN(STRUCT); buffer = std::string(yytext); open_brackets = 0; }
<STRUCT>"{" { BEGIN(STRUCT); buffer += std::string(yytext); open_brackets++; }
<STRUCT>"{" { BEGIN(STRUCT); buffer += std::string(yytext); open_brackets++; }
<STRUCT>"}"
{ buffer += std::string(yytext);
<STRUCT>"}"
|"};"
{ buffer += std::string(yytext);
if (open_brackets == 1)
if (open_brackets == 1)
{
{
BEGIN(INITIAL); return Parser::make_STRUCT(buffer, loc);
BEGIN(INITIAL); return Parser::make_STRUCT(buffer, loc);
...
...
tests/codegen.cpp
View file @
5982c742
...
@@ -72,6 +72,7 @@
...
@@ -72,6 +72,7 @@
#include "codegen/struct_save.cpp"
#include "codegen/struct_save.cpp"
#include "codegen/struct_save_nested.cpp"
#include "codegen/struct_save_nested.cpp"
#include "codegen/struct_save_string.cpp"
#include "codegen/struct_save_string.cpp"
#include "codegen/struct_semicolon.cpp"
#include "codegen/struct_short.cpp"
#include "codegen/struct_short.cpp"
#include "codegen/struct_string_array.cpp"
#include "codegen/struct_string_array.cpp"
#include "codegen/struct_string_ptr.cpp"
#include "codegen/struct_string_ptr.cpp"
...
...
tests/codegen/struct_semicolon.cpp
0 → 100644
View file @
5982c742
#include "common.h"
namespace
bpftrace
{
namespace
test
{
namespace
codegen
{
TEST
(
codegen
,
struct_semicolon
)
{
auto
expected
=
R"EXPECTED(%printf_t = type { i64, i64 }
; Function Attrs: nounwind
declare i64 @llvm.bpf.pseudo(i64, i64) #0
; Function Attrs: argmemonly nounwind
declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #1
define i64 @"kprobe:f"(i8*) local_unnamed_addr section "s_kprobe:f_1" {
entry:
%printf_args = alloca %printf_t, align 8
%1 = bitcast %printf_t* %printf_args to i8*
call void @llvm.lifetime.start.p0i8(i64 -1, i8* nonnull %1)
%2 = getelementptr inbounds %printf_t, %printf_t* %printf_args, i64 0, i32 0
store i64 0, i64* %2, align 8
%pseudo = tail call i64 @llvm.bpf.pseudo(i64 1, i64 1)
%get_stackid = tail call i64 inttoptr (i64 27 to i64 (i8*, i8*, i64)*)(i8* %0, i64 %pseudo, i64 256)
%get_pid_tgid = tail call i64 inttoptr (i64 14 to i64 ()*)()
%3 = shl i64 %get_pid_tgid, 32
%4 = or i64 %3, %get_stackid
%5 = getelementptr inbounds %printf_t, %printf_t* %printf_args, i64 0, i32 1
store i64 %4, i64* %5, align 8
%pseudo1 = tail call i64 @llvm.bpf.pseudo(i64 1, i64 2)
%get_cpu_id = tail call i64 inttoptr (i64 8 to i64 ()*)()
%perf_event_output = call i64 inttoptr (i64 25 to i64 (i8*, i8*, i64, i8*, i64)*)(i8* %0, i64 %pseudo1, i64 %get_cpu_id, %printf_t* nonnull %printf_args, i64 16)
call void @llvm.lifetime.end.p0i8(i64 -1, i8* nonnull %1)
ret i64 0
}
; Function Attrs: argmemonly nounwind
declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #1
attributes #0 = { nounwind }
attributes #1 = { argmemonly nounwind }
)EXPECTED"
;
test
(
"struct Foo { int x, y; char *str; };"
"k:f"
"{"
" printf(
\"
%s
\\
n
\"
, ustack);"
"}"
,
expected
);
test
(
"struct Foo { int x, y; char *str; }"
"k:f"
"{"
" printf(
\"
%s
\\
n
\"
, ustack);"
"}"
,
expected
);
}
}
// namespace codegen
}
// namespace test
}
// namespace bpftrace
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment