Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Open Source Software
Zipr Toolchain
Commits
50ffee20
Commit
50ffee20
authored
1 month ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
Update to fix errs.
parent
69f40523
No related branches found
No related tags found
1 merge request
!48
hope ubutnu24 just works
Pipeline
#31022
failed
1 month ago
Stage: gather
Stage: cross-protect
Stage: test
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
irdb-libs/libIRDB-elfdep/src/elfdep.cpp
+6
-1
6 additions, 1 deletion
irdb-libs/libIRDB-elfdep/src/elfdep.cpp
irdb-libs/libIRDB-syscall/include/syscall.hpp
+3
-1
3 additions, 1 deletion
irdb-libs/libIRDB-syscall/include/syscall.hpp
irdb-sdk
+1
-1
1 addition, 1 deletion
irdb-sdk
with
10 additions
and
3 deletions
irdb-libs/libIRDB-elfdep/src/elfdep.cpp
+
6
−
1
View file @
50ffee20
...
...
@@ -44,6 +44,11 @@ using IRDB_SDK::DataScoop_t;
#define REV_ALLOF(a) rbegin(a), rend(a)
#define ALLOF(a) begin(a), end(a)
template
<
typename
Func
,
typename
T
>
auto
myBind2nd
(
Func
func
,
const
T
&
value
)
{
return
std
::
bind
(
func
,
std
::
placeholders
::
_1
,
value
);
}
// static helpers
// use this to determine whether a scoop has a given name.
...
...
@@ -58,7 +63,7 @@ static struct ScoopFinder : binary_function<const IRDB_SDK::DataScoop_t*,const s
static
IRDB_SDK
::
DataScoop_t
*
find_scoop
(
IRDB_SDK
::
FileIR_t
*
firp
,
const
string
&
name
)
{
auto
it
=
find_if
(
firp
->
getDataScoops
().
begin
(),
firp
->
getDataScoops
().
end
(),
b
ind2nd
(
finder
,
name
))
;
auto
it
=
find_if
(
firp
->
getDataScoops
().
begin
(),
firp
->
getDataScoops
().
end
(),
myB
ind2nd
(
finder
,
name
))
;
if
(
it
!=
firp
->
getDataScoops
().
end
()
)
return
*
it
;
return
NULL
;
...
...
This diff is collapsed.
Click to expand it.
irdb-libs/libIRDB-syscall/include/syscall.hpp
+
3
−
1
View file @
50ffee20
...
...
@@ -46,7 +46,9 @@ namespace libIRDB
const
IRDB_SDK
::
SyscallSiteSet_t
&
getSyscalls
()
{
return
syscalls
;}
const
IRDB_SDK
::
SyscallSiteSet_t
&
getSyscalls
()
const
{
return
syscalls
;}
IRDB_SDK
::
SyscallSiteSet_t
getSyscalls
()
{
return
syscalls
;}
protected
:
IRDB_SDK
::
SyscallNumber_t
FindSystemCallNumber
(
IRDB_SDK
::
Instruction_t
*
insn
,
const
IRDB_SDK
::
InstructionPredecessors_t
&
preds
);
...
...
This diff is collapsed.
Click to expand it.
irdb-sdk
@
ceb1a164
Compare
f3d491b5
...
ceb1a164
Subproject commit
f3d491b57460bf89f648effe1693c5a909eca933
Subproject commit
ceb1a16469ce55d6cacb6de9129dfc45c21419f4
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment