summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-03-26 01:38:30 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-03-26 01:38:30 (GMT)
commit9f9f687dc41808de6a2b90b7d4b81e72f5047e1f (patch)
tree66dd819b251afbbc278feaea1935deef179bd369 /src/H5FD.c
parentd88d363ef9f37977724853a967ff7b7b9005671a (diff)
downloadhdf5-9f9f687dc41808de6a2b90b7d4b81e72f5047e1f.zip
hdf5-9f9f687dc41808de6a2b90b7d4b81e72f5047e1f.tar.gz
hdf5-9f9f687dc41808de6a2b90b7d4b81e72f5047e1f.tar.bz2
[svn-r12155] Purpose:
Code optimization Description: Tweak file free space allocation routines to optimize them a bit. Platforms tested: FreeBSD 4.11 (sleipnir) Too minor to require h5committest
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c121
1 files changed, 63 insertions, 58 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index b40b7b0..18ce95f 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -1636,13 +1636,70 @@ H5FD_alloc_from_free_list(H5FD_t *file, H5FD_mem_t type,
need_aligned = file->alignment > 1 && size >= file->threshold;
while (cur) {
- file->maxsize = MAX(file->maxsize, cur->size);
+ if(cur->size > file->maxsize)
+ file->maxsize = cur->size;
if (need_aligned) {
if ((head = cur->addr % file->alignment) == 0) {
/*
* Aligned address
*/
+ if (cur->size >= size) {
+ if (cur->size == size) {
+ /* exact match */
+ ret_value = cur->addr;
+
+ /*
+ * Make certain we don't hand out a block of raw data
+ * from the free list which overlaps with the metadata
+ * aggregation buffer (if it's turned on)
+ */
+ if (type == H5FD_MEM_DRAW &&
+ (file->feature_flags & H5FD_FEAT_ACCUMULATE_METADATA) &&
+ H5F_addr_overlap(ret_value, size,
+ file->accum_loc, file->accum_size)) {
+ ret_value = HADDR_UNDEF;
+ } else {
+ if (prev)
+ prev->next = cur->next;
+ else
+ file->fl[mapped_type] = cur->next;
+
+ H5FL_FREE(H5FD_free_t, cur);
+
+ if (size == file->maxsize)
+ file->maxsize = 0; /*unknown*/
+
+ HGOTO_DONE(ret_value)
+ }
+ }
+ else
+ if (!best || !found_aligned || cur->size < best->size) {
+ best = cur;
+ found_aligned = 1;
+ }
+ } /* end if */
+ } else {
+ /*
+ * Non-aligned address
+ *
+ * Check to see if this block is big enough to skip
+ * to the next aligned address and is still big
+ * enough for the requested size. the extra
+ * cur->size>head is for preventing unsigned
+ * underflow. (this can be improved by checking for
+ * an exact match after excluding the head. Such
+ * match is as good as the found_aligned case above.)
+ */
+ head = file->alignment - head; /* actual head size */
+
+ if (!found_aligned && cur->size > head && cur->size-head >= size &&
+ (!best || cur->size < best->size))
+ best = cur;
+ }
+ } else {
+ /* !need_aligned */
+ if (cur->size >= size) {
if (cur->size == size) {
/* exact match */
ret_value = cur->addr;
@@ -1654,8 +1711,8 @@ H5FD_alloc_from_free_list(H5FD_t *file, H5FD_mem_t type,
*/
if (type == H5FD_MEM_DRAW &&
(file->feature_flags & H5FD_FEAT_ACCUMULATE_METADATA) &&
- H5F_addr_overlap(ret_value, size,
- file->accum_loc, file->accum_size)) {
+ H5F_addr_overlap(ret_value, size, file->accum_loc,
+ file->accum_size)) {
ret_value = HADDR_UNDEF;
} else {
if (prev)
@@ -1671,63 +1728,11 @@ H5FD_alloc_from_free_list(H5FD_t *file, H5FD_mem_t type,
HGOTO_DONE(ret_value)
}
}
-
- if (cur->size > size)
- if (!best || !found_aligned || cur->size < best->size) {
+ else {
+ if (!best || cur->size < best->size)
best = cur;
- found_aligned = 1;
- }
- } else {
- /*
- * Non-aligned address
- *
- * Check to see if this block is big enough to skip
- * to the next aligned address and is still big
- * enough for the requested size. the extra
- * cur->size>head is for preventing unsigned
- * underflow. (this can be improved by checking for
- * an exact match after excluding the head. Such
- * match is as good as the found_aligned case above.)
- */
- head = file->alignment - head; /* actual head size */
-
- if (!found_aligned && cur->size > head && cur->size-head >= size &&
- (!best || cur->size < best->size))
- best = cur;
- }
- } else {
- /* !need_aligned */
- if (cur->size == size) {
- /* exact match */
- ret_value = cur->addr;
-
- /*
- * Make certain we don't hand out a block of raw data
- * from the free list which overlaps with the metadata
- * aggregation buffer (if it's turned on)
- */
- if (type == H5FD_MEM_DRAW &&
- (file->feature_flags & H5FD_FEAT_ACCUMULATE_METADATA) &&
- H5F_addr_overlap(ret_value, size, file->accum_loc,
- file->accum_size)) {
- ret_value = HADDR_UNDEF;
- } else {
- if (prev)
- prev->next = cur->next;
- else
- file->fl[mapped_type] = cur->next;
-
- H5FL_FREE(H5FD_free_t, cur);
-
- if (size == file->maxsize)
- file->maxsize = 0; /*unknown*/
-
- HGOTO_DONE(ret_value)
}
- } else {
- if (cur->size > size && (!best || cur->size < best->size))
- best = cur;
- }
+ } /* end if */
}
prev = cur;