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
c86d02b0
Commit
c86d02b0
authored
Oct 10, 2018
by
Mateusz Lenik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ifdef LLVM versions
parent
719c34ea
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
16 deletions
+63
-16
src/ast/codegen_llvm.cpp
src/ast/codegen_llvm.cpp
+10
-10
src/ast/irbuilderbpf.cpp
src/ast/irbuilderbpf.cpp
+1
-1
src/ast/irbuilderbpf.h
src/ast/irbuilderbpf.h
+9
-0
src/bpforc.h
src/bpforc.h
+43
-5
No files found.
src/ast/codegen_llvm.cpp
View file @
c86d02b0
...
...
@@ -429,7 +429,7 @@ void CodegenLLVM::visit(Call &call)
arg
.
accept
(
*
this
);
Value
*
offset
=
b_
.
CreateGEP
(
printf_args
,
{
b_
.
getInt32
(
0
),
b_
.
getInt32
(
i
)});
if
(
arg
.
type
.
IsArray
())
b_
.
C
reateMemCpy
(
offset
,
0
,
expr_
,
0
,
arg
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
offset
,
expr_
,
arg
.
type
.
size
,
1
);
else
b_
.
CreateStore
(
expr_
,
offset
);
}
...
...
@@ -478,7 +478,7 @@ void CodegenLLVM::visit(Call &call)
arg
.
accept
(
*
this
);
Value
*
offset
=
b_
.
CreateGEP
(
system_args
,
{
b_
.
getInt32
(
0
),
b_
.
getInt32
(
i
)});
if
(
arg
.
type
.
IsArray
())
b_
.
C
reateMemCpy
(
offset
,
0
,
expr_
,
0
,
arg
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
offset
,
expr_
,
arg
.
type
.
size
,
1
);
else
b_
.
CreateStore
(
expr_
,
offset
);
}
...
...
@@ -551,7 +551,7 @@ void CodegenLLVM::visit(Call &call)
b_
.
CreateStore
(
b_
.
getInt64
(
0
),
b_
.
CreateGEP
(
perfdata
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
sizeof
(
uint64_t
)
+
sizeof
(
uint64_t
))}));
// store map ident:
b_
.
C
reateMemCpy
(
b_
.
CreateGEP
(
perfdata
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
sizeof
(
uint64_t
)
+
2
*
sizeof
(
uint64_t
))}),
0
,
str_buf
,
0
,
map
.
ident
.
length
()
+
1
);
b_
.
C
REATE_MEMCPY
(
b_
.
CreateGEP
(
perfdata
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
sizeof
(
uint64_t
)
+
2
*
sizeof
(
uint64_t
))}),
str_buf
,
map
.
ident
.
length
()
+
1
,
1
);
b_
.
CreatePerfEventOutput
(
ctx_
,
perfdata
,
sizeof
(
uint64_t
)
+
2
*
sizeof
(
uint64_t
)
+
map
.
ident
.
length
()
+
1
);
b_
.
CreateLifetimeEnd
(
perfdata
);
expr_
=
nullptr
;
...
...
@@ -570,7 +570,7 @@ void CodegenLLVM::visit(Call &call)
b_
.
CreateStore
(
b_
.
getInt64
(
asyncactionint
(
AsyncAction
::
clear
)),
perfdata
);
else
b_
.
CreateStore
(
b_
.
getInt64
(
asyncactionint
(
AsyncAction
::
zero
)),
perfdata
);
b_
.
C
reateMemCpy
(
b_
.
CreateGEP
(
perfdata
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
sizeof
(
uint64_t
))}),
0
,
str_buf
,
0
,
map
.
ident
.
length
()
+
1
);
b_
.
C
REATE_MEMCPY
(
b_
.
CreateGEP
(
perfdata
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
sizeof
(
uint64_t
))}),
str_buf
,
map
.
ident
.
length
()
+
1
,
1
);
b_
.
CreatePerfEventOutput
(
ctx_
,
perfdata
,
sizeof
(
uint64_t
)
+
map
.
ident
.
length
()
+
1
);
b_
.
CreateLifetimeEnd
(
perfdata
);
expr_
=
nullptr
;
...
...
@@ -764,12 +764,12 @@ void CodegenLLVM::visit(Ternary &ternary)
// copy selected string via CreateMemCpy
b_
.
SetInsertPoint
(
left_block
);
ternary
.
left
->
accept
(
*
this
);
b_
.
C
reateMemCpy
(
buf
,
0
,
expr_
,
0
,
ternary
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
buf
,
expr_
,
ternary
.
type
.
size
,
1
);
b_
.
CreateBr
(
done
);
b_
.
SetInsertPoint
(
right_block
);
ternary
.
right
->
accept
(
*
this
);
b_
.
C
reateMemCpy
(
buf
,
0
,
expr_
,
0
,
ternary
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
buf
,
expr_
,
ternary
.
type
.
size
,
1
);
b_
.
CreateBr
(
done
);
b_
.
SetInsertPoint
(
done
);
...
...
@@ -796,7 +796,7 @@ void CodegenLLVM::visit(FieldAccess &acc)
{
// TODO This should be do-able without allocating more memory here
AllocaInst
*
dst
=
b_
.
CreateAllocaBPF
(
field
.
type
,
"internal_"
+
type
.
cast_type
+
"."
+
acc
.
field
);
b_
.
C
reateMemCpy
(
dst
,
0
,
src
,
0
,
field
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
dst
,
src
,
field
.
type
.
size
,
1
);
expr_
=
dst
;
// TODO clean up dst memory?
}
...
...
@@ -920,7 +920,7 @@ void CodegenLLVM::visit(AssignVarStatement &assignment)
}
else
{
b_
.
C
reateMemCpy
(
variables_
[
var
.
ident
],
0
,
expr_
,
0
,
var
.
type
.
size
);
b_
.
C
REATE_MEMCPY
(
variables_
[
var
.
ident
],
expr_
,
var
.
type
.
size
,
1
);
}
}
...
...
@@ -1119,7 +1119,7 @@ AllocaInst *CodegenLLVM::getMapKey(Map &map)
expr
->
accept
(
*
this
);
Value
*
offset_val
=
b_
.
CreateGEP
(
key
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
offset
)});
if
(
expr
->
type
.
type
==
Type
::
string
||
expr
->
type
.
type
==
Type
::
usym
)
b_
.
C
reateMemCpy
(
offset_val
,
0
,
expr_
,
0
,
expr
->
type
.
size
);
b_
.
C
REATE_MEMCPY
(
offset_val
,
expr_
,
expr
->
type
.
size
,
1
);
else
b_
.
CreateStore
(
expr_
,
offset_val
);
offset
+=
expr
->
type
.
size
;
...
...
@@ -1149,7 +1149,7 @@ AllocaInst *CodegenLLVM::getHistMapKey(Map &map, Value *log2)
expr
->
accept
(
*
this
);
Value
*
offset_val
=
b_
.
CreateGEP
(
key
,
{
b_
.
getInt64
(
0
),
b_
.
getInt64
(
offset
)});
if
(
expr
->
type
.
type
==
Type
::
string
||
expr
->
type
.
type
==
Type
::
usym
)
b_
.
C
reateMemCpy
(
offset_val
,
0
,
expr_
,
0
,
expr
->
type
.
size
);
b_
.
C
REATE_MEMCPY
(
offset_val
,
expr_
,
expr
->
type
.
size
,
1
);
else
b_
.
CreateStore
(
expr_
,
offset_val
);
offset
+=
expr
->
type
.
size
;
...
...
src/ast/irbuilderbpf.cpp
View file @
c86d02b0
...
...
@@ -193,7 +193,7 @@ Value *IRBuilderBPF::CreateMapLookupElem(Map &map, AllocaInst *key)
SetInsertPoint
(
lookup_success_block
);
if
(
map
.
type
.
type
==
Type
::
string
||
map
.
type
.
type
==
Type
::
cast
)
C
reateMemCpy
(
value
,
0
,
call
,
0
,
map
.
type
.
size
,
1
);
C
REATE_MEMCPY
(
value
,
call
,
map
.
type
.
size
,
1
);
else
CreateStore
(
CreateLoad
(
getInt64Ty
(),
call
),
value
);
CreateBr
(
lookup_merge_block
);
...
...
src/ast/irbuilderbpf.h
View file @
c86d02b0
...
...
@@ -6,6 +6,15 @@
#include "types.h"
#include <llvm/IR/IRBuilder.h>
#include <llvm/Config/llvm-config.h>
#if LLVM_VERSION_MAJOR >= 5 && LLVM_VERSION_MAJOR < 7
#define CREATE_MEMCPY(dst, src, size, algn) CreateMemCpy((dst), (src), (size), (algn))
#elif LLVM_VERSION_MAJOR >= 7
#define CREATE_MEMCPY(dst, src, size, algn) CreateMemCpy((dst), (algn), (src), (algn), (size))
#else
#error Unsupported LLVM version
#endif
namespace
bpftrace
{
namespace
ast
{
...
...
src/bpforc.h
View file @
c86d02b0
...
...
@@ -5,8 +5,10 @@
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
#include "llvm/ExecutionEngine/Orc/CompileUtils.h"
#include "llvm/ExecutionEngine/Orc/IRCompileLayer.h"
#include "llvm/ExecutionEngine/Orc/LambdaResolver.h"
#include "llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Config/llvm-config.h"
namespace
bpftrace
{
...
...
@@ -36,6 +38,42 @@ private:
std
::
map
<
std
::
string
,
std
::
tuple
<
uint8_t
*
,
uintptr_t
>>
&
sections_
;
};
#if LLVM_VERSION_MAJOR >= 5 && LLVM_VERSION_MAJOR < 7
class
BpfOrc
{
private:
std
::
unique_ptr
<
TargetMachine
>
TM
;
RTDyldObjectLinkingLayer
ObjectLayer
;
IRCompileLayer
<
decltype
(
ObjectLayer
),
SimpleCompiler
>
CompileLayer
;
public:
std
::
map
<
std
::
string
,
std
::
tuple
<
uint8_t
*
,
uintptr_t
>>
sections_
;
using
ModuleHandle
=
decltype
(
CompileLayer
)
::
ModuleHandleT
;
BpfOrc
(
TargetMachine
*
TM_
)
:
TM
(
TM_
),
ObjectLayer
([
this
]()
{
return
std
::
make_shared
<
MemoryManager
>
(
sections_
);
}),
CompileLayer
(
ObjectLayer
,
SimpleCompiler
(
*
TM
))
{
}
void
compileModule
(
std
::
unique_ptr
<
Module
>
M
)
{
auto
mod
=
addModule
(
move
(
M
));
CompileLayer
.
emitAndFinalize
(
mod
);
}
ModuleHandle
addModule
(
std
::
unique_ptr
<
Module
>
M
)
{
// We don't actually care about resolving symbols from other modules
auto
Resolver
=
createLambdaResolver
(
[](
const
std
::
string
&
Name
)
{
return
JITSymbol
(
nullptr
);
},
[](
const
std
::
string
&
Name
)
{
return
JITSymbol
(
nullptr
);
});
return
cantFail
(
CompileLayer
.
addModule
(
std
::
move
(
M
),
std
::
move
(
Resolver
)));
}
};
#elif LLVM_VERSION_MAJOR >= 7
class
BpfOrc
{
private:
...
...
@@ -54,12 +92,9 @@ public:
[](
const
std
::
string
&
Name
)
->
JITSymbol
{
return
nullptr
;
},
[](
Error
Err
)
{
cantFail
(
std
::
move
(
Err
),
"lookup failed"
);
})),
ObjectLayer
(
ES
,
[
this
](
VModuleKey
)
{
return
RTDyldObjectLinkingLayer
::
Resources
{
std
::
make_shared
<
MemoryManager
>
(
sections_
),
Resolver
};
}),
CompileLayer
(
ObjectLayer
,
SimpleCompiler
(
*
TM
))
{
}
CompileLayer
(
ObjectLayer
,
SimpleCompiler
(
*
TM
))
{}
void
compileModule
(
std
::
unique_ptr
<
Module
>
M
)
{
void
compileModule
(
std
::
unique_ptr
<
Module
>
M
)
{
auto
K
=
addModule
(
move
(
M
));
CompileLayer
.
emitAndFinalize
(
K
);
}
...
...
@@ -70,5 +105,8 @@ public:
return
K
;
}
};
#else
#error Unsupported LLVM version
#endif
}
// 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