|
@@ -62,26 +62,26 @@ if(RAW_BLOCKS_TYPE STREQUAL "freelist")
|
|
|
endif(ORDERING_POLICY STREQUAL "address")
|
|
|
|
|
|
if(WITH_COALESCING STREQUAL "fixed")
|
|
|
- if(NOT DEFINED MAX_COALESCE_SIZE)
|
|
|
- message(FATAL_ERROR "You have to set MAX_COALESCE_SIZE by using -DMAX_COALESCE_SIZE={int}.")
|
|
|
- endif(NOT DEFINED MAX_COALESCE_SIZE)
|
|
|
+ if(NOT DEFINED MAX_COAL_SIZE)
|
|
|
+ message(FATAL_ERROR "You have to set MAX_COAL_SIZE by using -DMAX_COAL_SIZE={int}.")
|
|
|
+ endif(NOT DEFINED MAX_COAL_SIZE)
|
|
|
set(COALESCING_FIXED ON)
|
|
|
elseif(WITH_COALESCING STREQUAL "variable")
|
|
|
- if(NOT DEFINED MAX_COALESCE_SIZE)
|
|
|
- message(FATAL_ERROR "You have to set MAX_COALESCE_SIZE by using -DMAX_COALESCE_SIZE={int}.")
|
|
|
- endif(NOT DEFINED MAX_COALESCE_SIZE)
|
|
|
+ if(NOT DEFINED MAX_COAL_SIZE)
|
|
|
+ message(FATAL_ERROR "You have to set MAX_COAL_SIZE by using -DMAX_COAL_SIZE={int}.")
|
|
|
+ endif(NOT DEFINED MAX_COAL_SIZE)
|
|
|
set(COALESCING_VARIABLE ON)
|
|
|
endif(WITH_COALESCING STREQUAL "fixed")
|
|
|
|
|
|
if(WITH_SPLITTING STREQUAL "fixed")
|
|
|
- if(NOT DEFINED MIN_SPLITTING_SIZE)
|
|
|
- message(FATAL_ERROR "You have to set MIN_SPLITTING_SIZE by using -DMIN_SPLITTING_SIZE={int}.")
|
|
|
- endif(NOT DEFINED MIN_SPLITTING_SIZE)
|
|
|
+ if(NOT DEFINED MIN_SPLIT_SIZE)
|
|
|
+ message(FATAL_ERROR "You have to set MIN_SPLIT_SIZE by using -DMIN_SPLIT_SIZE={int}.")
|
|
|
+ endif(NOT DEFINED MIN_SPLIT_SIZE)
|
|
|
set(SPLITTING_FIXED ON)
|
|
|
elseif(WITH_SPLITTING STREQUAL "variable")
|
|
|
- if(NOT DEFINED MIN_SPLITTING_SIZE)
|
|
|
- message(FATAL_ERROR "You have to set MIN_SPLITTING_SIZE by using -DMIN_SPLITTING_SIZE={int}.")
|
|
|
- endif(NOT DEFINED MIN_SPLITTING_SIZE)
|
|
|
+ if(NOT DEFINED MIN_SPLIT_SIZE)
|
|
|
+ message(FATAL_ERROR "You have to set MIN_SPLIT_SIZE by using -DMIN_SPLIT_SIZE={int}.")
|
|
|
+ endif(NOT DEFINED MIN_SPLIT_SIZE)
|
|
|
set(WITH_KNOBS ON)
|
|
|
set(SPLITTING_VARIABLE ON)
|
|
|
endif(WITH_SPLITTING STREQUAL "fixed")
|
|
@@ -159,27 +159,27 @@ if(RAW_BLOCKS_TYPE STREQUAL "freelist")
|
|
|
message(STATUS "Ordering policy: " ${ORDERING_POLICY})
|
|
|
|
|
|
message(STATUS "Coalescing: " ${WITH_COALESCING})
|
|
|
- if(MAX_COALESCE_SIZE)
|
|
|
+ if(MAX_COAL_SIZE)
|
|
|
if(WITH_COALESCING STREQUAL "fixed")
|
|
|
- message(STATUS " with max. coalescing size: " ${MAX_COALESCE_SIZE} " bytes")
|
|
|
+ message(STATUS " with max. coalescing size: " ${MAX_COAL_SIZE} " bytes")
|
|
|
elseif(WITH_COALESCING STREQUAL "variable")
|
|
|
- message(STATUS " with initial max. coalescing size: " ${MAX_COALESCE_SIZE}
|
|
|
+ message(STATUS " with initial max. coalescing size: " ${MAX_COAL_SIZE}
|
|
|
" bytes")
|
|
|
endif(WITH_COALESCING STREQUAL "fixed")
|
|
|
- endif(MAX_COALESCE_SIZE)
|
|
|
+ endif(MAX_COAL_SIZE)
|
|
|
|
|
|
message(STATUS "Splitting: " ${WITH_SPLITTING})
|
|
|
- if(MIN_SPLITTING_SIZE)
|
|
|
+ if(MIN_SPLIT_SIZE)
|
|
|
if(WITH_SPLITTING STREQUAL "fixed")
|
|
|
- message(STATUS " with min. splitting size: " ${MIN_SPLITTING_SIZE} " bytes")
|
|
|
+ message(STATUS " with min. splitting size: " ${MIN_SPLIT_SIZE} " bytes")
|
|
|
elseif(WITH_SPLITTING STREQUAL "variable")
|
|
|
message(STATUS " with initial min. splitting size: "
|
|
|
- ${MIN_SPLITTING_SIZE} " bytes")
|
|
|
+ ${MIN_SPLIT_SIZE} " bytes")
|
|
|
endif(WITH_SPLITTING STREQUAL "fixed")
|
|
|
if(COALESCE_AFTER_SPLIT)
|
|
|
message(STATUS "Coalesce after split: " ${COALESCE_AFTER_SPLIT})
|
|
|
endif(COALESCE_AFTER_SPLIT)
|
|
|
- endif(MIN_SPLITTING_SIZE)
|
|
|
+ endif(MIN_SPLIT_SIZE)
|
|
|
|
|
|
elseif(RAW_BLOCKS_TYPE STREQUAL "bitmap")
|
|
|
message(STATUS "Bitmap cell resolution: " ${BITMAP_RESOLUTION} " bytes")
|