2018-12-11 20:00:30 +00:00
|
|
|
#CXX=g++-8
|
|
|
|
#CC=gcc-8
|
|
|
|
PLATFORM=$(shell uname -i)
|
2018-12-23 13:09:09 +00:00
|
|
|
CXXFLAGS=-std=c++11
|
2018-12-11 20:00:30 +00:00
|
|
|
CCFLAGS=
|
|
|
|
ifeq ($(PLATFORM),x86_64)
|
|
|
|
CXXFLAGS += -maes
|
|
|
|
endif
|
|
|
|
BINDIR=bin
|
|
|
|
SRCDIR=src
|
|
|
|
OBJDIR=obj
|
2018-12-19 20:54:44 +00:00
|
|
|
LDFLAGS=-lpthread
|
2018-12-11 20:00:30 +00:00
|
|
|
TOBJS=$(addprefix $(OBJDIR)/,instructionsPortable.o TestAluFpu.o)
|
2019-01-18 22:51:18 +00:00
|
|
|
ROBJS=$(addprefix $(OBJDIR)/,argon2_core.o argon2_ref.o AssemblyGeneratorX86.o blake2b.o CompiledVirtualMachine.o dataset.o JitCompilerX86.o instructionsPortable.o Instruction.o InterpretedVirtualMachine.o main.o Program.o softAes.o VirtualMachine.o t1ha2.o Cache.o virtualMemory.o divideByConstantCodegen.o LightClientAsyncWorker.o AddressTransform.o hashAes1Rx4.o)
|
2018-12-31 18:06:45 +00:00
|
|
|
ifeq ($(PLATFORM),x86_64)
|
|
|
|
ROBJS += $(OBJDIR)/JitCompilerX86-static.o
|
|
|
|
endif
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
all: release test
|
|
|
|
|
|
|
|
release: CXXFLAGS += -march=native -O3 -flto
|
|
|
|
release: CCFLAGS += -march=native -O3 -flto
|
|
|
|
release: $(BINDIR)/randomx
|
|
|
|
|
|
|
|
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 $@
|
|
|
|
|
|
|
|
$(OBJDIR)/TestAluFpu.o: $(addprefix $(SRCDIR)/,TestAluFpu.cpp instructions.hpp Pcg32.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/TestAluFpu.cpp -o $@
|
2019-01-18 16:57:47 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/AddressTransform.o: $(addprefix $(SRCDIR)/,AddressTransform.cpp InterpretedVirtualMachine.hpp common.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/AddressTransform.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
$(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 $@
|
|
|
|
|
|
|
|
$(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) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/argon2_ref.c -o $@
|
|
|
|
|
2018-12-21 21:41:35 +00:00
|
|
|
$(OBJDIR)/AssemblyGeneratorX86.o: $(addprefix $(SRCDIR)/,AssemblyGeneratorX86.cpp AssemblyGeneratorX86.hpp Instruction.hpp Pcg32.hpp common.hpp instructions.hpp instructionWeights.hpp) | $(OBJDIR)
|
2018-12-13 22:11:55 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/AssemblyGeneratorX86.cpp -o $@
|
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
$(OBJDIR)/blake2b.o: $(addprefix $(SRCDIR)/blake2/,blake2b.c blake2.h blake2-impl.h) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/blake2/blake2b.c -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/CompiledVirtualMachine.o: $(addprefix $(SRCDIR)/,CompiledVirtualMachine.cpp CompiledVirtualMachine.hpp Pcg32.hpp common.hpp instructions.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/CompiledVirtualMachine.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2018-12-19 20:54:44 +00:00
|
|
|
$(OBJDIR)/dataset.o: $(addprefix $(SRCDIR)/,dataset.cpp common.hpp Pcg32.hpp) | $(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-01-11 13:08:21 +00:00
|
|
|
$(OBJDIR)/divideByConstantCodegen.o: $(addprefix $(SRCDIR)/,divideByConstantCodegen.c divideByConstantCodegen.h) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/divideByConstantCodegen.c -o $@
|
|
|
|
|
2019-01-18 22:51:18 +00:00
|
|
|
$(OBJDIR)/hashAes1Rx4.o: $(addprefix $(SRCDIR)/,hashAes1Rx4.cpp softAes.h) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/hashAes1Rx4.cpp -o $@
|
|
|
|
|
2018-12-21 21:41:35 +00:00
|
|
|
$(OBJDIR)/JitCompilerX86.o: $(addprefix $(SRCDIR)/,JitCompilerX86.cpp JitCompilerX86.hpp Instruction.hpp instructionWeights.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-01-10 21:04:55 +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.inc)) | $(OBJDIR)
|
2018-12-31 18:06:45 +00:00
|
|
|
$(CXX) -x assembler-with-cpp -c $(SRCDIR)/JitCompilerX86-static.S -o $@
|
|
|
|
|
2018-12-11 20:00:30 +00:00
|
|
|
$(OBJDIR)/instructionsPortable.o: $(addprefix $(SRCDIR)/,instructionsPortable.cpp instructions.hpp intrinPortable.h) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/instructionsPortable.cpp -o $@
|
2018-12-13 22:11:55 +00:00
|
|
|
|
2018-12-21 21:41:35 +00:00
|
|
|
$(OBJDIR)/Instruction.o: $(addprefix $(SRCDIR)/,Instruction.cpp Instruction.hpp instructionWeights.hpp) | $(OBJDIR)
|
2018-12-13 22:11:55 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Instruction.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
2018-12-21 21:41:35 +00:00
|
|
|
$(OBJDIR)/InterpretedVirtualMachine.o: $(addprefix $(SRCDIR)/,InterpretedVirtualMachine.cpp InterpretedVirtualMachine.hpp Pcg32.hpp instructions.hpp instructionWeights.hpp) | $(OBJDIR)
|
2018-12-11 20:00:30 +00:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/InterpretedVirtualMachine.cpp -o $@
|
2019-01-18 16:57:47 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/LightClientAsyncWorker.o: $(addprefix $(SRCDIR)/,LightClientAsyncWorker.cpp LightClientAsyncWorker.hpp common.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/LightClientAsyncWorker.cpp -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/main.o: $(addprefix $(SRCDIR)/,main.cpp InterpretedVirtualMachine.hpp Stopwatch.hpp blake2/blake2.h) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/main.cpp -o $@
|
|
|
|
|
|
|
|
$(OBJDIR)/Program.o: $(addprefix $(SRCDIR)/,Program.cpp Program.hpp Pcg32.hpp) | $(OBJDIR)
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(SRCDIR)/Program.cpp -o $@
|
2018-12-19 20:54:44 +00:00
|
|
|
|
|
|
|
$(OBJDIR)/Cache.o: $(addprefix $(SRCDIR)/,Cache.cpp Cache.hpp Pcg32.hpp argon2_core.h) | $(OBJDIR)
|
|
|
|
$(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 $@
|
|
|
|
|
|
|
|
$(OBJDIR)/VirtualMachine.o: $(addprefix $(SRCDIR)/,VirtualMachine.cpp VirtualMachine.hpp common.hpp dataset.hpp) | $(OBJDIR)
|
|
|
|
$(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-19 11:38:10 +00:00
|
|
|
$(OBJDIR)/t1ha2.o: $(addprefix $(SRCDIR)/t1ha/,t1ha2.c t1ha.h t1ha_bits.h) | $(OBJDIR)
|
|
|
|
$(CC) $(CCFLAGS) -c $(SRCDIR)/t1ha/t1ha2.c -o $@
|
2018-12-11 20:00:30 +00:00
|
|
|
|
|
|
|
$(OBJDIR):
|
|
|
|
mkdir $(OBJDIR)
|
|
|
|
|
|
|
|
$(BINDIR):
|
|
|
|
mkdir $(BINDIR)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(BINDIR)/randomx $(BINDIR)/AluFpuTest $(OBJDIR)/*.o
|