Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c7c8c0de
Commit
c7c8c0de
authored
Jan 08, 2011
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Speed up source string creation (by using rb trees).
parent
cbd5811e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
56 additions
and
9 deletions
+56
-9
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+3
-0
module.c
dlls/dbghelp/module.c
+2
-0
source.c
dlls/dbghelp/source.c
+51
-9
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
c7c8c0de
...
...
@@ -31,6 +31,7 @@
#include "winnls.h"
#include "wine/list.h"
#include "wine/unicode.h"
#include "wine/rbtree.h"
#include "cvconst.h"
...
...
@@ -348,6 +349,7 @@ struct module_format
}
u
;
};
extern
const
struct
wine_rb_functions
source_rb_functions
;
struct
module
{
struct
process
*
process
;
...
...
@@ -382,6 +384,7 @@ struct module
unsigned
sources_used
;
unsigned
sources_alloc
;
char
*
sources
;
struct
wine_rb_tree
sources_offsets_tree
;
};
struct
process
...
...
dlls/dbghelp/module.c
View file @
c7c8c0de
...
...
@@ -189,6 +189,7 @@ struct module* module_new(struct process* pcs, const WCHAR* name,
module
->
sources_used
=
0
;
module
->
sources_alloc
=
0
;
module
->
sources
=
0
;
wine_rb_init
(
&
module
->
sources_offsets_tree
,
&
source_rb_functions
);
return
module
;
}
...
...
@@ -638,6 +639,7 @@ BOOL module_remove(struct process* pcs, struct module* module)
}
hash_table_destroy
(
&
module
->
ht_symbols
);
hash_table_destroy
(
&
module
->
ht_types
);
wine_rb_destroy
(
&
module
->
sources_offsets_tree
,
NULL
,
NULL
);
HeapFree
(
GetProcessHeap
(),
0
,
module
->
sources
);
HeapFree
(
GetProcessHeap
(),
0
,
module
->
addr_sorttab
);
pool_destroy
(
&
module
->
pool
);
...
...
dlls/dbghelp/source.c
View file @
c7c8c0de
...
...
@@ -29,21 +29,55 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dbghelp
);
static
struct
module
*
rb_module
;
struct
source_rb
{
struct
wine_rb_entry
entry
;
unsigned
source
;
};
static
void
*
source_rb_alloc
(
size_t
size
)
{
return
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
}
static
void
*
source_rb_realloc
(
void
*
ptr
,
size_t
size
)
{
return
HeapReAlloc
(
GetProcessHeap
(),
0
,
ptr
,
size
);
}
static
void
source_rb_free
(
void
*
ptr
)
{
HeapFree
(
GetProcessHeap
(),
0
,
ptr
);
}
static
int
source_rb_compare
(
const
void
*
key
,
const
struct
wine_rb_entry
*
entry
)
{
const
struct
source_rb
*
t
=
WINE_RB_ENTRY_VALUE
(
entry
,
const
struct
source_rb
,
entry
);
return
strcmp
((
const
char
*
)
key
,
rb_module
->
sources
+
t
->
source
);
}
const
struct
wine_rb_functions
source_rb_functions
=
{
source_rb_alloc
,
source_rb_realloc
,
source_rb_free
,
source_rb_compare
,
};
/******************************************************************
* source_find
*
* check whether a source file has already been stored
*/
static
unsigned
source_find
(
const
struct
module
*
module
,
const
char
*
name
)
static
unsigned
source_find
(
const
char
*
name
)
{
char
*
ptr
=
module
->
sources
;
struct
wine_rb_entry
*
e
;
while
(
*
ptr
)
{
if
(
strcmp
(
ptr
,
name
)
==
0
)
return
ptr
-
module
->
sources
;
ptr
+=
strlen
(
ptr
)
+
1
;
}
return
(
unsigned
)
-
1
;
e
=
wine_rb_get
(
&
rb_module
->
sources_offsets_tree
,
name
);
if
(
!
e
)
return
-
1
;
return
WINE_RB_ENTRY_VALUE
(
e
,
struct
source_rb
,
entry
)
->
source
;
}
/******************************************************************
...
...
@@ -71,10 +105,13 @@ unsigned source_new(struct module* module, const char* base, const char* name)
if
(
tmp
[
bsz
-
1
]
!=
'/'
)
tmp
[
bsz
++
]
=
'/'
;
strcpy
(
&
tmp
[
bsz
],
name
);
}
if
(
!
module
->
sources
||
(
ret
=
source_find
(
module
,
full
))
==
(
unsigned
)
-
1
)
rb_module
=
module
;
if
(
!
module
->
sources
||
(
ret
=
source_find
(
full
))
==
(
unsigned
)
-
1
)
{
char
*
new
;
int
len
=
strlen
(
full
)
+
1
;
struct
source_rb
*
rb
;
if
(
module
->
sources_used
+
len
+
1
>
module
->
sources_alloc
)
{
if
(
!
module
->
sources
)
...
...
@@ -96,6 +133,11 @@ unsigned source_new(struct module* module, const char* base, const char* name)
memcpy
(
module
->
sources
+
module
->
sources_used
,
full
,
len
);
module
->
sources_used
+=
len
;
module
->
sources
[
module
->
sources_used
]
=
'\0'
;
if
((
rb
=
pool_alloc
(
&
module
->
pool
,
sizeof
(
*
rb
))))
{
rb
->
source
=
ret
;
wine_rb_put
(
&
module
->
sources_offsets_tree
,
full
,
&
rb
->
entry
);
}
}
done:
HeapFree
(
GetProcessHeap
(),
0
,
tmp
);
...
...
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