1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
# SPDX-License-Identifier: Apache-2.0
# -----------------------------------------------------------------------------
# Copyright 2019-2020 Arm Limited
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
# -----------------------------------------------------------------------------
# Configure the application to build
#
# * astcenc - a full compressor/decompressor
# * astcdec - a decompressor without compression support
#
# Note that "astcdec" is not a fully customized command line application. It
# will look like a normal astcenc build except for the binary name, and all
# operations requring a compression will fail. It is only intended for use as
# test vehicle for the decompress-only library testing.
APP ?= astcenc
# Configure the SIMD ISA and intrinsics support; valid values are:
#
# * neon - compile for Arm aarch64 + NEON
# * sse2 - allow use of x86-64 + sse2
# * sse4.2 - allow use of x86-64 + sse4.2 and popcnt
# * avx2 - allow use of x86-64 + avx2, sse4.2, and popcnt
VEC ?= avx2
# Configure the build type; valid values are:
#
# * release - build a fully optimized build without symbols
# * profile - build a moderately optimized build, with symbols
# * debug - build an unoptimized build with symbols
BUILD ?= release
# Configure the build for ISA invariant output; valid values are:
#
# * 0 - ISA invariance is off (default)
# * 1 - ISA invariance is on
#
# Enabling ISA invariant output will give bit-exact compression across SSE2,
# SSE4.2, and AVX2. Thi will disable some optimizations for newer ISAs which
# cannot be reasonably implemented by the older ones, and will therefore reduce
# performance.
ISA_INV ?= 0
# ==================================================
# File listings
SOURCES = \
astcenc_averages_and_directions.cpp \
astcenc_block_sizes2.cpp \
astcenc_color_quantize.cpp \
astcenc_color_unquantize.cpp \
astcenc_compress_symbolic.cpp \
astcenc_compute_variance.cpp \
astcenc_decompress_symbolic.cpp \
astcenc_encoding_choice_error.cpp \
astcenc_entry.cpp \
astcenc_find_best_partitioning.cpp \
astcenc_ideal_endpoints_and_weights.cpp \
astcenc_image.cpp \
astcenc_integer_sequence.cpp \
astcenc_kmeans_partitioning.cpp \
astcenc_mathlib.cpp \
astcenc_mathlib_softfloat.cpp \
astcenc_partition_tables.cpp \
astcenc_percentile_tables.cpp \
astcenc_pick_best_endpoint_format.cpp \
astcenc_platform_isa_detection.cpp \
astcenc_quantization.cpp \
astcenc_symbolic_physical.cpp \
astcenc_weight_align.cpp \
astcenc_weight_quant_xfer_tables.cpp \
astcenccli_error_metrics.cpp \
astcenccli_image.cpp \
astcenccli_image_load_store.cpp \
astcenccli_platform_dependents.cpp \
astcenccli_toplevel.cpp \
astcenccli_toplevel_help.cpp
EXTERNAL_SOURCES = \
stb_image.h \
stb_image_write.h \
tinyexr.h
HEADERS = \
astcenc.h \
astcenc_internal.h \
astcenc_mathlib.h \
astcenc_vecmathlib.h \
astcenccli_internal.h \
stb_image.h \
stb_image_write.h \
tinyexr.h
BINARY = $(APP)-$(VEC)
OBJECTS = $(SOURCES:.cpp=-$(BINARY).o)
EXTERNAL_OBJECTS = $(EXTERNAL_SOURCES:.h=-$(BINARY).o)
# ==================================================
# CXXFLAGS setup (and input validation). This appends on top of whatever
# CXXFLAGS are set on the command line, which is useful for integration
# with the oss-fuzz build infrastructure for fuzz testing
CXXFLAGS += -std=c++14 -fvisibility=hidden \
-Wall -Wextra -Wpedantic -Werror -Werror=shadow -Wdouble-promotion
# Validate that the APP parameter is a supported value, and patch CXXFLAGS
ifeq ($(APP),astcenc)
# Nothing to set up
else
ifeq ($(APP),astcdec)
CXXFLAGS += -DASTCENC_DECOMPRESS_ONLY
else
$(error Unsupported app, use APP=astcenc/astcdec)
endif
endif
# Validate that the BUILD parameter is a supported value, and patch CXXFLAGS
ifeq ($(BUILD),release)
CXXFLAGS += -O3 -DNDEBUG -flto
else
ifeq ($(BUILD),profile)
CXXFLAGS += -O2 -g
else
ifeq ($(BUILD),debug)
CXXFLAGS += -O0 -g
else
$(error Unsupported build, use BUILD=release/profile/debug)
endif
endif
endif
# Validate that the VEC parameter is a supported value, and patch CXXFLAGS
ifeq ($(VEC),neon)
# NEON is on by default; no enabled needed
CXXFLAGS += -DASTCENC_SSE=0 -DASTCENC_AVX=0 -DASTCENC_POPCNT=0 -DASTCENC_VECALIGN=16
else
ifeq ($(VEC),sse2)
CXXFLAGS += -mfpmath=sse -msse2 -DASTCENC_SSE=20 -DASTCENC_AVX=0 -DASTCENC_POPCNT=0 -DASTCENC_VECALIGN=16
else
ifeq ($(VEC),sse4.2)
CXXFLAGS += -mfpmath=sse -msse4.2 -mpopcnt -DASTCENC_SSE=42 -DASTCENC_AVX=0 -DASTCENC_POPCNT=1 -DASTCENC_VECALIGN=16
else
ifeq ($(VEC),avx2)
CXXFLAGS += -mfpmath=sse -mavx2 -mpopcnt -DASTCENC_SSE=42 -DASTCENC_AVX=2 -DASTCENC_POPCNT=1 -DASTCENC_VECALIGN=32
else
$(error Unsupported VEC target, use VEC=neon/sse2/sse4.2/avx2)
endif
endif
endif
endif
# Validate that the ISA_ENV option is a valid option
ifeq ($(ISA_INV),0)
CXXFLAGS += -DASTCENC_ISA_INVARIANCE=0
else
ifeq ($(ISA_INV),1)
CXXFLAGS += -DASTCENC_ISA_INVARIANCE=1
else
$(error Unsupported ISA invariance, use ISA_INV=0/1)
endif
endif
# Disable necessary optimizations and warnings for third-party source files
CXXFLAGS_EXTERNAL = \
$(CXXFLAGS) \
-Wno-unused-parameter \
-Wno-double-promotion \
-fno-strict-aliasing
# ==================================================
# Exports for child make invocations
export CXX
export BUILD
# ==================================================
# Build rules for the command line wrapper
$(BINARY): $(EXTERNAL_OBJECTS) $(OBJECTS)
@$(CXX) -o $@ $^ $(CXXFLAGS) -lpthread
@echo "[Link] $@ (using $(VEC) $(BUILD))"
# Note: ensure NDEBUG is undefined; all three libraries are weak at runtime
# handling of corrupt files, relying on asserts to handle bad file input.
# Compiling with NDEBUG is a potential security risk.
stb_image-$(BINARY).o: stb_image.h
@$(CXX) -c -x c++ -o $@ $< $(CXXFLAGS_EXTERNAL) -DSTB_IMAGE_IMPLEMENTATION \
-DSTBI_NO_PSD -DSTBI_NO_GIF -DSTBI_NO_PIC -DSTBI_NO_PNM -UNDEBUG
@echo "[C++] $<"
stb_image_write-$(BINARY).o: stb_image_write.h
@$(CXX) -c -x c++ -o $@ $< $(CXXFLAGS_EXTERNAL) -DSTB_IMAGE_WRITE_IMPLEMENTATION \
-UNDEBUG
@echo "[C++] $<"
tinyexr-$(BINARY).o: tinyexr.h
@$(CXX) -c -x c++ -o $@ $< $(CXXFLAGS) -DTINYEXR_IMPLEMENTATION -UNDEBUG
@echo "[C++] $<"
$(OBJECTS): %-$(BINARY).o: %.cpp $(HEADERS)
@$(CXX) -c -o $@ $(abspath $<) $(CXXFLAGS)
@echo "[C++] $<"
# ==================================================
# Generic utility rules
clean:
@rm -f *-$(BINARY).o
@rm -f *-$(BINARY).obj
@rm -f $(BINARY)
@rm -f $(BINARY).exe
@echo "[Clean] Removing $(VEC) build outputs"
batchbuild:
# NEON is deliberately not here - needs a different CXX setting
@+$(MAKE) -s VEC=sse2
@+$(MAKE) -s VEC=sse4.2
@+$(MAKE) -s VEC=avx2
batchclean:
@+$(MAKE) -s clean VEC=neon
@+$(MAKE) -s clean VEC=sse2
@+$(MAKE) -s clean VEC=sse4.2
@+$(MAKE) -s clean VEC=avx2
|