2018-12-11 20:00:30 +00:00
|
|
|
#CXX=g++-8
|
|
|
|
#CC=gcc-8
|
2019-02-11 14:51:34 +00:00
|
|
|
PLATFORM=$(shell uname -m)
|
2018-12-23 13:09:09 +00:00
|
|
|
CXXFLAGS=-std=c++11
|
2018-12-11 20:00:30 +00:00
|
|
|
CCFLAGS=
|
|
|
|
BINDIR=bin
|
|
|
|
SRCDIR=src
|
|
|
|
OBJDIR=obj
|
2018-12-19 20:54:44 +00:00
|
|
|
LDFLAGS=-lpthread
|
2019-02-19 21:47:05 +00:00
|
|
|
CPPSRC=src/argon2_core.c src/Cache.cpp src/divideByConstantCodegen.c src/Instruction.cpp src/JitCompilerX86.cpp src/Program.cpp src/VirtualMachine.cpp src/argon2_ref.c src/CompiledVirtualMachine.cpp src/executeProgram-linux.cpp src/instructionsPortable.cpp src/LightClientAsyncWorker.cpp src/softAes.cpp src/virtualMemory.cpp src/AssemblyGeneratorX86.cpp src/dataset.cpp src/hashAes1Rx4.cpp src/InterpretedVirtualMachine.cpp src/main.cpp src/TestAluFpu.cpp src/blake2/blake2b.c
|
2018-12-11 20:00:30 +00:00
|
|
|
TOBJS=$(addprefix $(OBJDIR)/,instructionsPortable.o TestAluFpu.o)
|
2019-04-13 10:02:08 +00:00
|
|
|
ROBJS=$(addprefix $(OBJDIR)/,argon2_core.o argon2_ref.o AssemblyGeneratorX86.o blake2b.o CompiledVirtualMachine.o CompiledLightVirtualMachine.o dataset.o JitCompilerX86.o instructionsPortable.o Instruction.o InterpretedVirtualMachine.o main.o softAes.o VirtualMachine.o Cache.o virtualMemory.o reciprocal.o hashAes1Rx4.o superscalarGenerator.o Blake2Generator.o)
|
2019-02-11 14:51:34 +00:00
|
|
|
ifeq ($(PLATFORM),amd64)
|
|
|
|
ROBJS += $(OBJDIR)/JitCompilerX86-static.o $(OBJDIR)/squareHash.o
|
2019-02-19 21:47:05 +00:00
|
|
|
CXXFLAGS += -maes
|
2019-02-11 14:51:34 +00:00
|
|
|
endif
|
2018-12-31 18:06:45 +00:00
|
|
|
ifeq ($(PLATFORM),x86_64)
|
2019-02-04 16:07:00 +00:00
|
|
|
ROBJS += $(OBJDIR)/JitCompilerX86-static.o $(OBJDIR)/squareHash.o
|
2019-02-19 21:47:05 +00:00
|
|
|
CXXFLAGS += -maes
|
2018-12-31 18:06:45 +00:00
|
|
|
endif
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-02-09 18:32:53 +00:00
|
|
|
all: release
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
release: CXXFLAGS += -march=native -O3 -flto
|
|
|
|
release: CCFLAGS += -march=native -O3 -flto
|
2019-03-22 10:00:21 +00:00
|
|
|
release: LDFLAGS += -flto
|
2018-12-11 20:00:30 +00:00
|
|
|
release: $(BINDIR)/randomx
|
|
|
|
|
2019-03-22 10:00:21 +00:00
|
|
|
nolto: CXXFLAGS += -march=native -O3
|
|
|
|
nolto: CCFLAGS += -march=native -O3
|
|
|
|
nolto: $(BINDIR)/randomx
|
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
debug: CXXFLAGS += -g
|
|
|
|
debug: CCFLAGS += -g
|
|
|
|
debug: LDFLAGS += -g
|
|
|
|
debug: $(BINDIR)/randomx
|
|
|
|
|
2019-01-18 16:57:47 +00:00
|
|
|
profile: CXXFLAGS += -pg
|
|
|
|
profile: CCFLAGS += -pg
|
|
|
|
profile: LDFLAGS += -pg
|
|
|
|
profile: $(BINDIR)/randomx
|
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
test: CXXFLAGS += -O0
|
|
|
|
test: $(BINDIR)/AluFpuTest
|
|
|
|
|
|
|
|
$(BINDIR)/randomx: $(ROBJS) | $(BINDIR)
|
|
|
|
$(CXX) $(ROBJS) $(LDFLAGS) -o $@
|
|
|
|
|
|
|
|
$(BINDIR)/AluFpuTest: $(TOBJS) | $(BINDIR)
|
|
|
|
$(CXX) $(TOBJS) $(LDFLAGS) -o $@
|
|
|
|
|
2019-02-09 18:32:53 +00:00
|
|
|
$(OBJDIR)/TestAluFpu.o: $(addprefix $(SRCDIR)/,TestAluFpu.cpp instructions.hpp) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/TestAluFpu.cpp -o $@
|
|
|
|
|
|
|
|
$(OBJDIR)/argon2_core.o: $(addprefix $(SRCDIR)/,argon2_core.c argon2_core.h blake2/blake2.h blake2/blake2-impl.h) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/argon2_core.c -o $@
|
|
|
|
|
2019-02-19 21:47:05 +00:00
|
|
|
$(OBJDIR)/argon2_ref.o: $(addprefix $(SRCDIR)/,argon2_ref.c argon2.h argon2_core.h blake2/blake2.h blake2/blake2-impl.h blake2/blamka-round-ref.h blake2/endian.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/argon2_ref.c -o $@
|
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/AssemblyGeneratorX86.o: $(addprefix $(SRCDIR)/,AssemblyGeneratorX86.cpp AssemblyGeneratorX86.hpp Instruction.hpp common.hpp instructionWeights.hpp blake2/endian.h reciprocal.h Program.hpp configuration.h superscalarGenerator.hpp) | $(OBJDIR)
|
2018-12-13 22:11:55 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/AssemblyGeneratorX86.cpp -o $@
|
|
|
|
|
2019-02-19 21:47:05 +00:00
|
|
|
$(OBJDIR)/blake2b.o: $(addprefix $(SRCDIR)/blake2/,blake2b.c blake2.h blake2-impl.h endian.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/blake2/blake2b.c -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2019-03-22 10:00:21 +00:00
|
|
|
$(OBJDIR)/CompiledVirtualMachine.o: $(addprefix $(SRCDIR)/,CompiledVirtualMachine.cpp CompiledVirtualMachine.hpp common.hpp configuration.h JitCompilerX86.hpp) | $(OBJDIR)
|
2018-12-13 22:11:55 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/CompiledVirtualMachine.cpp -o $@
|
2019-03-22 10:00:21 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/CompiledLightVirtualMachine.o: $(addprefix $(SRCDIR)/,CompiledLightVirtualMachine.cpp CompiledLightVirtualMachine.hpp common.hpp configuration.h JitCompilerX86.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/CompiledLightVirtualMachine.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-03-22 11:03:39 +00:00
|
|
|
$(OBJDIR)/dataset.o: $(addprefix $(SRCDIR)/,dataset.cpp common.hpp blake2/endian.h dataset.hpp intrinPortable.h Cache.hpp virtualMemory.hpp configuration.h squareHash.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/dataset.cpp -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2019-02-22 16:48:26 +00:00
|
|
|
$(OBJDIR)/reciprocal.o: $(addprefix $(SRCDIR)/,reciprocal.c reciprocal.h) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/reciprocal.c -o $@
|
2019-01-11 13:08:21 +00:00
|
|
|
|
2019-02-19 21:47:05 +00:00
|
|
|
$(OBJDIR)/hashAes1Rx4.o: $(addprefix $(SRCDIR)/,hashAes1Rx4.cpp softAes.h intrinPortable.h blake2/endian.h) | $(OBJDIR)
|
2019-01-18 22:51:18 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/hashAes1Rx4.cpp -o $@
|
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/JitCompilerX86.o: $(addprefix $(SRCDIR)/,JitCompilerX86.cpp JitCompilerX86.hpp Instruction.hpp instructionWeights.hpp common.hpp blake2/endian.h Program.hpp reciprocal.h virtualMemory.hpp configuration.h superscalarGenerator.hpp) | $(OBJDIR)
|
2018-12-18 21:00:58 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/JitCompilerX86.cpp -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2019-03-22 10:00:21 +00:00
|
|
|
$(OBJDIR)/JitCompilerX86-static.o: $(addprefix $(SRCDIR)/,JitCompilerX86-static.S $(addprefix asm/program_, prologue_linux.inc prologue_load.inc epilogue_linux.inc epilogue_store.inc read_dataset.inc loop_load.inc loop_store.inc xmm_constants.inc read_dataset_light.inc read_dataset_light_sub.inc)) | $(OBJDIR)
|
2018-12-31 18:06:45 +00:00
|
|
|
$(CXX) -x assembler-with-cpp -c $(SRCDIR)/JitCompilerX86-static.S -o $@
|
|
|
|
|
2019-03-22 10:00:21 +00:00
|
|
|
$(OBJDIR)/squareHash.o: $(addprefix $(SRCDIR)/,squareHash.S $(addprefix asm/, squareHash.inc initBlock.inc) configuration.h) | $(OBJDIR)
|
2019-02-04 16:07:00 +00:00
|
|
|
$(CXX) -x assembler-with-cpp -c $(SRCDIR)/squareHash.S -o $@
|
|
|
|
|
2019-02-19 21:47:05 +00:00
|
|
|
$(OBJDIR)/instructionsPortable.o: $(addprefix $(SRCDIR)/,instructionsPortable.cpp intrinPortable.h blake2/endian.h common.hpp) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/instructionsPortable.cpp -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2019-03-16 23:57:48 +00:00
|
|
|
$(OBJDIR)/Instruction.o: $(addprefix $(SRCDIR)/,Instruction.cpp Instruction.hpp instructionWeights.hpp blake2/endian.h common.hpp configuration.h) | $(OBJDIR)
|
2018-12-13 22:11:55 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Instruction.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/InterpretedVirtualMachine.o: $(addprefix $(SRCDIR)/,InterpretedVirtualMachine.cpp InterpretedVirtualMachine.hpp instructionWeights.hpp VirtualMachine.hpp common.hpp blake2/endian.h Program.hpp Instruction.hpp intrinPortable.h dataset.hpp Cache.hpp virtualMemory.hpp configuration.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/InterpretedVirtualMachine.cpp -o $@
|
2019-01-18 16:57:47 +00:00
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/superscalarGenerator.o: $(addprefix $(SRCDIR)/,superscalarGenerator.cpp superscalarGenerator.hpp Program.hpp blake2/blake2.h blake2/endian.h configuration.h Blake2Generator.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/superscalarGenerator.cpp -o $@
|
2019-04-10 22:01:22 +00:00
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/Blake2Generator.o: $(addprefix $(SRCDIR)/,Blake2Generator.cpp blake2/blake2.h blake2/endian.h common.hpp Blake2Generator.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Blake2Generator.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2019-04-13 10:02:08 +00:00
|
|
|
$(OBJDIR)/main.o: $(addprefix $(SRCDIR)/,main.cpp InterpretedVirtualMachine.hpp Stopwatch.hpp blake2/blake2.h VirtualMachine.hpp common.hpp blake2/endian.h Program.hpp Instruction.hpp intrinPortable.h CompiledVirtualMachine.hpp JitCompilerX86.hpp AssemblyGeneratorX86.hpp dataset.hpp Cache.hpp virtualMemory.hpp hashAes1Rx4.hpp softAes.h configuration.h superscalarGenerator.hpp) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/main.cpp -o $@
|
|
|
|
|
2019-03-16 23:57:48 +00:00
|
|
|
$(OBJDIR)/Program.o: $(addprefix $(SRCDIR)/,Program.cpp Program.hpp configuration.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Program.cpp -o $@
|
2018-12-19 20:54:44 +00:00
|
|
|
|
2019-03-16 23:57:48 +00:00
|
|
|
$(OBJDIR)/Cache.o: $(addprefix $(SRCDIR)/,Cache.cpp Cache.hpp argon2_core.h configuration.h) | $(OBJDIR)
|
2018-12-19 20:54:44 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Cache.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/softAes.o: $(addprefix $(SRCDIR)/,softAes.cpp softAes.h) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/softAes.cpp -o $@
|
|
|
|
|
2019-03-16 23:57:48 +00:00
|
|
|
$(OBJDIR)/VirtualMachine.o: $(addprefix $(SRCDIR)/,VirtualMachine.cpp VirtualMachine.hpp common.hpp dataset.hpp blake2/endian.h Program.hpp Instruction.hpp hashAes1Rx4.hpp softAes.h intrinPortable.h blake2/blake2.h configuration.h) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/VirtualMachine.cpp -o $@
|
2018-12-19 11:38:10 +00:00
|
|
|
|
2019-01-10 21:04:55 +00:00
|
|
|
$(OBJDIR)/virtualMemory.o: $(addprefix $(SRCDIR)/,virtualMemory.cpp virtualMemory.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/virtualMemory.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
$(OBJDIR):
|
|
|
|
mkdir $(OBJDIR)
|
|
|
|
|
|
|
|
$(BINDIR):
|
|
|
|
mkdir $(BINDIR)
|
|
|
|
|
|
|
|
clean:
|
2019-02-11 14:51:34 +00:00
|
|
|
rm -f $(BINDIR)/randomx $(BINDIR)/AluFpuTest $(OBJDIR)/*.o
|