dbb1f8cf37
671fc805 update test/cybozu 8ca86231 remove mutable in Address 8b93498f add cmpsb/scasb/... 7eb62750 avoid core_sharing_data_cache = 0 for some cloud envrionment 85767e95 support mingw64 59573e6e add PROTECT_RE mode for protect() 71b75f65 fix push(qword[mem]) 811f4959 Merge branch 'rsdubtso-master' 8e3cb711 Account for potentially zero 0xb leaf when parsing cache/topology via cpuid a816249f update version fe083912 fix to avoid zero division for some virtual machine f0a8f7fa update version cac09b7a Merge pull request #62 from mgouicem/master 1f96b5e0 Fixes an error raised by clang < 3.9 c0f885ac Merge pull request #61 from mgouicem/master bfe2d201 Change default value for n_cores in setCacheHierarchy. fd587b55 change format and add getter for data_cache_size 80b3c7b9 remove macro 88189609 Merge branch 'mgouicem-master' e6b79723 Adding queries to get the cpu topology on Intel architectures. 221384f0 vmov* supports [mem]|k|z c04141ef define XBYAK_NO_OP_NAMES for test af7f05ee add const for Label git-subtree-dir: externals/xbyak git-subtree-split: 671fc805d09d075f48d4625f183ef2e1ef725106
73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
TARGET = make_nm normalize_prefix jmp address bad_address misc
|
|
XBYAK_INC=../xbyak/xbyak.h
|
|
BIT=32
|
|
ifeq ($(shell uname -m),x86_64)
|
|
BIT=64
|
|
endif
|
|
|
|
ifeq ($(BIT),64)
|
|
TARGET += jmp64 address64
|
|
endif
|
|
|
|
all: $(TARGET)
|
|
|
|
CFLAGS_WARN=-Wall -Wextra -Wformat=2 -Wcast-qual -Wcast-align -Wwrite-strings -Wfloat-equal -Wpointer-arith
|
|
|
|
CFLAGS=-O2 -fomit-frame-pointer -Wall -fno-operator-names -I../ -I./ $(CFLAGS_WARN) #-std=c++0x
|
|
make_nm:
|
|
$(CXX) $(CFLAGS) make_nm.cpp -o $@
|
|
normalize_prefix: normalize_prefix.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) normalize_prefix.cpp -o $@
|
|
test_mmx: test_mmx.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) test_mmx.cpp -o $@ -lpthread
|
|
jmp: jmp.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) jmp.cpp -o $@ -m32
|
|
jmp64: jmp.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) jmp.cpp -o $@ -m64
|
|
address: address.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) address.cpp -o $@ -m32
|
|
address64: address.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) address.cpp -o $@ -m64
|
|
bad_address: bad_address.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) bad_address.cpp -o $@
|
|
misc: misc.cpp ../xbyak/xbyak.h
|
|
$(CXX) $(CFLAGS) misc.cpp -o $@
|
|
|
|
test: normalize_prefix jmp bad_address $(TARGET)
|
|
$(MAKE) -C ../gen
|
|
./test_nm.sh
|
|
./test_nm.sh Y
|
|
./test_nm.sh avx512
|
|
./test_address.sh
|
|
./jmp
|
|
./bad_address
|
|
./misc
|
|
ifeq ($(BIT),64)
|
|
./test_address.sh 64
|
|
./test_nm.sh 64
|
|
./test_nm.sh Y64
|
|
./jmp64
|
|
endif
|
|
|
|
test_avx: normalize_prefix
|
|
./test_avx.sh
|
|
./test_avx.sh Y
|
|
ifeq ($(BIT),64)
|
|
./test_address.sh 64
|
|
./test_avx.sh 64
|
|
./test_avx.sh Y64
|
|
endif
|
|
|
|
test_avx512: normalize_prefix
|
|
./test_avx512.sh
|
|
ifeq ($(BIT),64)
|
|
./test_avx512.sh 64
|
|
endif
|
|
clean:
|
|
rm -rf *.o $(TARGET) lib_run nm.cpp nm_frame make_512
|
|
|
|
lib_run: lib_test.cpp lib_run.cpp lib.h
|
|
$(CXX) $(CFLAGS) lib_run.cpp lib_test.cpp -o lib_run
|
|
make_nm: make_nm.cpp $(XBYAK_INC)
|
|
|
|
|