Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Sunxi Tools
Commits
9bb5adf7
Commit
9bb5adf7
authored
Jun 14, 2012
by
Alejandro Mery
Browse files
script_bin: add pr_debug() helper
parent
3cabfc51
Changes
1
Hide whitespace changes
Inline
Side-by-side
script_bin.c
View file @
9bb5adf7
...
...
@@ -26,8 +26,14 @@
#include "script.h"
#include "script_bin.h"
#define pr_info(...) fprintf(stderr, "fex2bin: " __VA_ARGS__)
#define pr_err(...) pr_info("E: " __VA_ARGS__)
#define pr_info(...) errf("fexc-bin: " __VA_ARGS__)
#define pr_err(...) errf("E: fexc-bin: " __VA_ARGS__)
#ifdef DEBUG
#define pr_debug(...) errf("D: fexc-bin: " __VA_ARGS__)
#else
#define pr_debug(...)
#endif
#define PTR(B, OFF) (void*)((char*)(B)+(OFF))
#define WORDS(S) (((S)+(sizeof(uint32_t)-1))/(sizeof(uint32_t)))
...
...
@@ -86,11 +92,9 @@ size_t script_bin_size(struct script *script,
(
*
sections
)
*
sizeof
(
struct
script_bin_section
)
+
(
*
entries
)
*
sizeof
(
struct
script_bin_entry
)
+
words
*
sizeof
(
uint32_t
);
#ifdef VERBOSE
pr_info
(
"sections:%zu entries:%zu data:%zu/%zu -> %zu
\n
"
,
*
sections
,
*
entries
,
words
,
words
*
sizeof
(
uint32_t
),
bin_size
);
#endif
pr_debug
(
"sections:%zu entries:%zu data:%zu/%zu -> %zu
\n
"
,
*
sections
,
*
entries
,
words
,
words
*
sizeof
(
uint32_t
),
bin_size
);
return
bin_size
;
}
...
...
@@ -110,17 +114,13 @@ int script_generate_bin(void *bin, size_t UNUSED(bin_size),
entry
=
(
void
*
)
section
+
sections
*
sizeof
(
*
section
);
data
=
(
void
*
)
entry
+
entries
*
sizeof
(
*
entry
);
#ifdef VERBOSE
pr_info
(
"head....:%p
\n
"
,
head
);
pr_info
(
"section.:%p (offset:%zu, each:%zu)
\n
"
,
section
,
(
void
*
)
section
-
bin
,
sizeof
(
*
section
));
pr_info
(
"entry...:%p (offset:%zu, each:%zu)
\n
"
,
entry
,
(
void
*
)
entry
-
bin
,
sizeof
(
*
entry
));
pr_info
(
"data....:%p (offset:%zu)
\n
"
,
data
,
(
void
*
)
data
-
bin
);
#endif
pr_debug
(
"head....:%p
\n
"
,
head
);
pr_debug
(
"section.:%p (offset:%zu, each:%zu)
\n
"
,
section
,
(
void
*
)
section
-
bin
,
sizeof
(
*
section
));
pr_debug
(
"entry...:%p (offset:%zu, each:%zu)
\n
"
,
entry
,
(
void
*
)
entry
-
bin
,
sizeof
(
*
entry
));
pr_debug
(
"data....:%p (offset:%zu)
\n
"
,
data
,
(
void
*
)
data
-
bin
);
head
->
sections
=
sections
;
head
->
version
[
0
]
=
0
;
...
...
@@ -189,23 +189,18 @@ int script_generate_bin(void *bin, size_t UNUSED(bin_size),
data
+=
size
;
entry
->
pattern
|=
(
size
>>
2
);
#ifdef VERBOSE
pr_info
(
"%s.%s <%p> (type:%d, words:%d (%zu), offset:%d)
\n
"
,
section
->
name
,
entry
->
name
,
entry
,
(
entry
->
pattern
>>
16
)
&
0xffff
,
(
entry
->
pattern
>>
0
)
&
0xffff
,
size
,
entry
->
offset
);
#endif
pr_debug
(
"%s.%s <%p> (type:%d, words:%d (%zu), offset:%d)
\n
"
,
section
->
name
,
entry
->
name
,
entry
,
(
entry
->
pattern
>>
16
)
&
0xffff
,
(
entry
->
pattern
>>
0
)
&
0xffff
,
size
,
entry
->
offset
);
c
++
;
entry
++
;
}
section
->
length
=
c
;
#ifdef VERBOSE
pr_info
(
"%s <%p> (length:%d, offset:%d)
\n
"
,
section
->
name
,
section
,
section
->
length
,
section
->
offset
);
#endif
pr_debug
(
"%s <%p> (length:%d, offset:%d)
\n
"
,
section
->
name
,
section
,
section
->
length
,
section
->
offset
);
section
++
;
}
...
...
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