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
99370723
Commit
99370723
authored
12 years ago
by
jdh8d
Browse files
Options
Downloads
Patches
Plain Diff
fixes for spasm with libstrata.so
Former-commit-id: 90112870110ff883249b93c94c25bb2944db4643
parent
23e3da86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tools/spasm/spasm.cpp
+15
-2
15 additions, 2 deletions
tools/spasm/spasm.cpp
tools/spasm/spasm_main.cpp
+30
-2
30 additions, 2 deletions
tools/spasm/spasm_main.cpp
with
45 additions
and
4 deletions
tools/spasm/spasm.cpp
+
15
−
2
View file @
99370723
...
...
@@ -51,18 +51,31 @@ static void resolveSymbols(const string &mapFile);
static
vector
<
bin_instruction_t
>
parseBin
(
const
string
&
binFile
);
static
vector
<
string
>
getSPRI
(
const
vector
<
bin_instruction_t
>
&
bin
,
const
vector
<
spasmline_t
>
&
spasmlines
,
const
string
&
symbolFilename
);
static
void
printVector
(
const
string
&
outputFile
,
const
vector
<
string
>
&
lines
);
static
int
getSymbolAddress
(
const
string
&
symbolFilename
,
const
string
&
symbol
)
throw
(
exception
);
//
// @todo: need to cache results
//
static
string
getCallbackAddress
(
const
string
&
symbolFilename
,
const
string
&
symbol
)
throw
(
exception
)
{
char
buf
[
30
];
int
diff
=
getSymbolAddress
(
symbolFilename
,
symbol
)
-
getSymbolAddress
(
symbolFilename
,
"strata_init"
);
sprintf
(
buf
,
"%x"
,
diff
);
string
s
(
buf
);
return
s
;
}
static
int
getSymbolAddress
(
const
string
&
symbolFilename
,
const
string
&
symbol
)
throw
(
exception
)
{
string
symbolFullName
=
symbolFilename
+
"+"
+
symbol
;
map
<
string
,
string
>::
iterator
callbackMapIterator
;
if
(
callbackMap
.
find
(
symbolFullName
)
!=
callbackMap
.
end
())
{
return
callbackMap
[
symbolFullName
];
return
strtol
(
callbackMap
[
symbolFullName
]
.
c_str
(),
NULL
,
16
)
;
}
// nm -a stratafier.o.exe | egrep " integer_overflow_detector$" | cut -f1 -d' '
...
...
@@ -79,7 +92,7 @@ static string getCallbackAddress(const string &symbolFilename, const string &sym
callbackMap
[
symbolFullName
]
=
addressString
;
return
addressString
;
return
strtol
(
addressString
.
c_str
(),
NULL
,
16
)
;
}
void
a2bspri
(
const
string
&
input
,
const
string
&
output
,
const
string
&
symbolFilename
)
throw
(
exception
)
...
...
This diff is collapsed.
Click to expand it.
tools/spasm/spasm_main.cpp
+
30
−
2
View file @
99370723
#include
"spasm.h"
#include
<iostream>
#include
<fstream>
#include
<string>
#include
<cstdlib>
using
namespace
std
;
bool
fexists
(
string
filename
)
{
ifstream
ifile
(
filename
.
c_str
());
return
ifile
;
}
///Utility SPASM's main
int
main
(
int
argc
,
char
*
argv
[])
{
if
(
argc
!=
4
)
string
input
,
output
,
elf
;
if
(
argc
==
4
)
{
elf
=
string
(
argv
[
3
]);
if
(
!
fexists
(
elf
))
{
cerr
<<
"Symbol file "
<<
elf
<<
" does not exist. SPASM will not be able to process callbacks properly."
<<
endl
;
}
}
else
if
(
argc
==
5
)
{
elf
=
string
(
argv
[
3
]);
if
(
!
fexists
(
elf
))
{
elf
=
string
(
argv
[
4
]);
if
(
!
fexists
(
elf
))
cerr
<<
"Symbol files ("
<<
argv
[
3
]
<<
" and "
<<
argv
[
4
]
<<
") do not exist. SPASM will not be able to process callbacks properly."
<<
endl
;
}
}
else
{
cerr
<<
"SPASM Usage:
\n
<input file> <output file> <symbol file>
\n
"
<<
endl
;
exit
(
1
);
}
string
input
,
output
,
elf
;
input
=
string
(
argv
[
1
]);
output
=
string
(
argv
[
2
]);
...
...
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