-
Notifications
You must be signed in to change notification settings - Fork 48
/
Makefile
852 lines (708 loc) · 23.2 KB
/
Makefile
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
#
# Makefile
#
# Should build JOP and all tools from scratch.
#
# not included at the moment:
# ACEX board
# configuration CPLD compiling
# Spartan-3 targets
#
# You probably want to change the folloing parts in the Makefile:
#
# QPROJ ... your Quartus FPGA project
# COM_* ... your communication settings
# TARGET_APP_PATH, MAIN_CLASS ... your target application
#
# for a quick change you can also use command line arguments when invoking make:
# make japp -e QPROJ=cycwrk TARGET_APP_PATH=java/target/src/bench MAIN_CLASS=jbe/DoAll
#
#
################################################################################
# Board configuration
################################################################################
#
# Set USB to true for an FTDI chip based board (dspio, usbmin, lego)
#
USB=false
#
# com1 is the usual serial port
# com5 is the FTDI VCOM for the USB download
# use -usb to download the Java application
# without the echo 'protocol' on USB
#
ifeq ($(USB),true)
COM_PORT=COM5
COM_FLAG=-e -usb
else
COM_FLAG=-e
ifeq ($(WINDIR),)
COM_PORT=/dev/ttyS0
else
COM_PORT=COM1
endif
endif
#
# Select the Quartus project
#
# 'some' different Quartus projects
QPROJ=cycmin cycbaseio cycbg dspio lego cycfpu cyc256x16 sopcmin usbmin cyccmp de2-70vga cycrttm de2-70rttm
# if you want to build only one Quartus project use e.q.:
ifeq ($(USB),true)
QPROJ=usbmin
else
QPROJ=altde2-70
endif
#
# Select the Xilinx project byt setting XFPGA to true
# Currently only the ml50x is supported
# with a full make integration
XPROJ=ml50x
XFPGA=false
# Altera FPGA configuration cable
#BLASTER_TYPE=ByteBlasterMV
BLASTER_TYPE=USB-Blaster
ifeq ($(WINDIR),)
DOWN=./down
USBRUNNER=./USBRunner
S=:
else
DOWN=./down.exe
USBRUNNER=USBRunner.exe
S=\;
endif
#
# Set CLDC11 to true to use the CLDC11 JDK
#
CLDC11=false
#
# Whether to use JDK 1.6
#
JDK16=false
# Currently same hardware is used so all three cannot be "yes" at the same time
# Remember to edit decode.vhd file and uncomment/comment the appropriate microcode
#
# STPSR = start put static reference
# STPFR = start put filed reference
# STASTR = start array store reference
#
# The same should be done in Instruction.java and uncomment/comment the lines where
# stpfr, stsr, stastr are defined
#
# After that a full make is necessary
USE_HW_PUTFIELD_REF=no
USE_HW_PUTSTATIC_REF=no
USE_HW_AASTORE=no
#
# Number of cores for JopSim and RTTM simulation
#
CORE_CNT=1
# Which project do you want to be downloaded?
DLPROJ=$(QPROJ)
# Which project do you want to be programmed into the flash?
FLPROJ=$(DLPROJ)
# IP address for Flash programming
IPDEST=192.168.1.2
IPDEST=192.168.0.123
################################################################################
# Application configuration
################################################################################
# Jop RTS configuration
USE_SCOPES=false
USE_SCOPECHECKS=false
ADD_REF_INFO=false
MEASURE=true
JOP_CONF_STR=USE_SCOPES=$(USE_SCOPES) USE_SCOPECHECKS=$(USE_SCOPECHECKS) ADD_REF_INFO=$(ADD_REF_INFO) MEASURE=$(MEASURE)
P1=test
P2=test
P3=HelloWorld
#
# Run JVM Tests
#
#P2=jvm
#P3=DoAll
#
# The test program for Basio and the NAND Flash
#
#P3=FlashBaseio
################################################################################
# Tool configuration
################################################################################
#
# Callstring length for analysis and optimization
#
CALLSTRING_LENGTH=0
#
# dataflow analysis
#
USE_DFA?=no
ifeq ($(USE_DFA),yes)
DFA_CACHE=--dfa-cache-dir java/target/wcet/dfa-cache
endif
#
# Application optimization with JCopter
#
USE_JCOPTER?=no
JCOPTER_OPT?=--dump-callgraph merged --dump-jvm-callgraph off -O 2
JCOPTER_USE_WCA?=no
#
# WCET analysis
#
WCET_METHOD=measure
# WCET_OPTIONS=
################## end of configuration section ###################
#
# some variables
#
TOOLS=java/tools
# setting for my Eclipse CVS project
# TOOLS=../../workspace/cvs_jop_tools
EXT_CP=java/lib/bcel-5.2.jar$(S)java/lib/jakarta-regexp-1.3.jar$(S)java/lib/RXTXcomm.jar$(S)java/lib/lpsolve55j.jar$(S)java/lib/log4j-1.2.15.jar$(S)java/lib/jgrapht-jdk1.5.jar$(S)java/lib/velocity-1.5.jar$(S)java/lib/velocity-dep-1.5.jar
# The line below makes the compilation crash, because it causes JOPizer to include a *lot*
# of classes which are actually not necessary.
#EXT_CP=java/jopeclipse/com.jopdesign.jopeclipse/lib/bcel-5.2.jar$(S)java/lib/jakarta-regexp-1.3.jar$(S)java/lib/RXTXcomm.jar$(S)java/lib/lpsolve55j.jar
#EXT_CP=java/lib/recompiled_bcel-5.2.jar$(S)java/lib/jakarta-regexp-1.3.jar$(S)java/lib/RXTXcomm.jar$(S)java/lib/lpsolve55j.jar
#TOOLS_JFLAGS=-d $(TOOLS)/dist/classes -classpath $(EXT_CP) -sourcepath $(TOOLS)/src$(S)$(TARGET_SRC_PATH)/common
TOOLS_JFLAGS=-g -d $(TOOLS)/dist/classes -classpath $(EXT_CP) -sourcepath $(TOOLS)/src$(S)$(TARGET_SRC_PATH)/common -encoding Latin1
PCTOOLS=java/pc
PCTOOLS_JFLAGS=-g -d $(PCTOOLS)/dist/classes -sourcepath $(PCTOOLS)/src -encoding Latin1
TARGET=java/target
TARGET_SRC_PATH=$(TARGET)/src
# changed to add another class to the tool chain
#TOOLS_CP=-classpath $(EXT_CP)$(S)$(TOOLS)/dist/lib/jop-tools.jar
TOOLS_CP=-classpath $(TOOLS)/dist/lib/jop-tools.jar$(S)$(TOOLS)/dist/lib/JopDebugger.jar$(S)$(EXT_CP)
ifeq ($(CLDC11),true)
TARGET_SOURCE=$(TARGET_SRC_PATH)/common$(S)$(TARGET_SRC_PATH)/cldc11/cldc_orig$(S)$(TARGET_SRC_PATH)/cldc11/cldc_mod$(S)$(TARGET_SRC_PATH)/cldc11/jdk_base_orig$(S)$(TARGET_SRC_PATH)/cldc11/jdk_base_mod$(S)$(TARGET_SRC_PATH)/rtapi$(S)$(TARGET_APP_SOURCE_PATH)
else
ifeq ($(JDK16),true)
TARGET_SOURCE=$(TARGET_SRC_PATH)/common$(S)$(TARGET_SRC_PATH)/jdk_base$(S)$(TARGET_SRC_PATH)/jdk16$(S)$(TARGET_SRC_PATH)/rtapi$(S)$(TARGET_APP_SOURCE_PATH)
else
TARGET_SOURCE=$(TARGET_SRC_PATH)/common$(S)$(TARGET_SRC_PATH)/jdk_base$(S)$(TARGET_SRC_PATH)/jdk11$(S)$(TARGET_SRC_PATH)/rtapi$(S)$(TARGET_APP_SOURCE_PATH)
endif
endif
TARGET_JFLAGS=-d $(TARGET)/dist/classes -sourcepath $(TARGET_SOURCE) -bootclasspath "" -extdirs "" -classpath "" -source 1.5 -target 1.5 -encoding Latin1
GCC_PARAMS=
# uncomment this to use RTTM
#USE_RTTM=yes
ifeq ($(USE_RTTM),yes)
GCC_PARAMS=-DRTTM
endif
# uncomment this if you want floating point operations in hardware
# ATTN: be sure to choose 'cycfpu' as QPROJ else no FPU will be available
#GCC_PARAMS=-DFPU_ATTACHED
#
# Add your application source pathes and class that contains the
# main method here. We are using those simple P1/2/3 variables for
# P1=directory, P2=package name, and P3=main class
# for sources 'inside' the JOP source tree
#
# TARGET_APP_PATH is the path to your application source
#
# MAIN_CLASS is the class that contains the Main method with package names
#
TARGET_APP_PATH=$(TARGET_SRC_PATH)/$(P1)
MAIN_CLASS=$(P2)/$(P3)
# here an example how to define an application outside
# from the jop directory tree
#TARGET_APP_PATH=/usr2/muvium/jopaptalone/src
#MAIN_CLASS=com/muvium/eclipse/PeriodicTimer/JOPBootstrapLauncher
# add more directoies here when needed
# (and use \; to escape the ';' when using a list!)
TARGET_APP_SOURCE_PATH=$(TARGET_APP_PATH)$(S)$(TARGET_SRC_PATH)/bench$(S)$(TARGET_SRC_PATH)/app
TARGET_APP=$(TARGET_APP_PATH)/$(MAIN_CLASS).java
# setting for rup DSVM on JopCMP
#TARGET_APP_PATH=/usrx/DSVMFP/src
# just any name that the .jop file gets.
JOPBIN=$(P3).jop
#
# Debugger stuff
#
# Added flags for development with JDWP
#DEBUG_PORT = 8000
DEBUG_PORT = 8001
DEBUG_PARAMETERS= -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=$(DEBUG_PORT)
#DEBUG_PARAMETERS=
#DEBUG_JOPIZER=$(DEBUG_PARAMETERS)
DEBUG_JOPIZER=
#DEBUG_JOPSIM=$(DEBUG_PARAMETERS)
DEBUG_JOPSIM=
# Use local RXTX libary if other not specified
# e.g RXTXcomm-2.2pre2
JAVA_RXTX_LIB?=java/lib/RXTXcomm.jar
#
# application optimization with ProGuard:
# proguard.sourceforge.net/
# uncomment following line to use it
#OPTIMIZE=mv java/target/dist/lib/classes.jar java/target/dist/lib/in.zip; java -jar java/lib/proguard.jar @optimize.pro
################################################################################
# Make rules
################################################################################
# build everything from scratch
all:
make init
ifeq ($(USB),true)
make jopusb
else
make jopser
endif
make japp
# Build toolchain and autogenerate source files
init:
make directories
make tools
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SERIAL
make jop_config
# build the Java application and download it
japp:
make java_app
make config
make download
# configure the FPGA
config:
ifeq ($(USB),true)
make config_usb
else
ifeq ($(XFPGA),true)
make config_xilinx
else
make config_byteblaster
endif
endif
install:
@echo nothing to install
# cleanup
EXTENSIONS=class rbf rpt sof pin summary ttf qdf dat wlf done qws
clean:
for ext in $(EXTENSIONS); do \
find `ls` -name \*.$$ext -print -exec rm -r -f {} \; ; \
done
-find `ls` -name jop.pof -print -exec rm -r -f {} \;
-find `ls` -name db -print -exec rm -r -f {} \;
-find `ls` -name incremental_db -print -exec rm -r -f {} \;
-rm -rf asm/generated
-rm -f vhdl/*.vhd
-rm -rf $(TOOLS)/dist
-rm -rf $(PCTOOLS)/dist
-rm -rf $(TARGET)/dist
-rm -rf modelsim/work
-rm -rf modelsim/transcript
-rm -rf modelsim/gaisler
-rm -rf modelsim/grlib
-rm -rf modelsim/techmap
cd doc/book && make clean
#
# build all the (Java) tools
#
tools:
-rm -rf $(TOOLS)/dist
mkdir $(TOOLS)/dist
mkdir $(TOOLS)/dist/lib
mkdir $(TOOLS)/dist/classes
javac $(TOOLS_JFLAGS) $(TOOLS)/src/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/org/apache/bcel/util/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/build/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/tools/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/dfa/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/jcopter/*.java
javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/wcet/*.java
cp $(TOOLS)/src/com/jopdesign/wcet/report/*.vm $(TOOLS)/dist/classes/com/jopdesign/wcet/report
# quick hack to get the tools with the debugger ok
# the build.xml from the debugger contains the correct info
# but also some more (old?) stuff
# does not work as some Sun classes for JDWP are missing
# javac $(TOOLS_JFLAGS) $(TOOLS)/src/com/jopdesign/debug/jdwp/*.java
cd $(TOOLS)/dist/classes && jar cf ../lib/jop-tools.jar *
# we moved the pc stuff to it's own target to be
# NOT built on make all.
# It depends on javax.comm which is NOT installed
# by default - Blame SUN on this!
#
# TODO: change it to RXTXcomm if it's working ok
#
pc:
-rm -rf $(PCTOOLS)/dist
mkdir $(PCTOOLS)/dist
mkdir $(PCTOOLS)/dist/lib
mkdir $(PCTOOLS)/dist/classes
# make compile_java -e JAVA_DIR=$(PCTOOLS)/src
javac $(PCTOOLS_JFLAGS) $(PCTOOLS)/src/udp/*.java
cd $(PCTOOLS)/dist/classes && jar cf ../lib/jop-pc.jar *
#
# make target for the tools that are still in C
#
cprog:
gcc c_src/amd.c -o amd.exe
gcc c_src/e.c -o e.exe
#
# compile and JOPize the application
#
ifeq (${WCET_METHOD},measure)
JCOPTER_DEFAULT_OPTS=--inline.exclude-wca-targets true
else
JCOPTER_DEFAULT_OPTS=
endif
JCOPTER_DEFAULT_OPTS+= --use-dfa $(USE_DFA) --callstring-length $(CALLSTRING_LENGTH) --sp $(TARGET_SOURCE)
JCOPTER_OPTIONS=$(JCOPTER_DEFAULT_OPTS) ${JCOPTER_OPT}
jop_config:
java $(TOOLS_CP) com.jopdesign.tools.GenJopConfig $(JOP_CONF_STR) > $(TARGET)/src/common/com/jopdesign/sys/Config.java
java_app:
-rm -rf $(TARGET)/dist
-mkdir $(TARGET)/dist
-mkdir $(TARGET)/dist/classes
-mkdir $(TARGET)/dist/lib
-mkdir $(TARGET)/dist/bin
make jop_config
javac $(TARGET_JFLAGS) $(TARGET_SRC_PATH)/common/com/jopdesign/sys/*.java
ifeq ($(CLDC11),false)
javac $(TARGET_JFLAGS) $(TARGET_SRC_PATH)/jdk_base/java/lang/annotation/*.java # oh new Java 1.5 world!
endif
ifeq ($(USE_RTTM),yes)
javac $(TARGET_JFLAGS) $(TARGET_SRC_PATH)/common/rttm/internal/Utils.java
endif
javac $(TARGET_JFLAGS) $(TARGET_APP)
# WCETPreprocess, overwrite existing class files
java $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.wcet.WCETPreprocess \
-c $(TARGET)/dist/classes -o $(TARGET)/dist $(MAIN_CLASS)
# Optimize
ifeq ($(USE_JCOPTER),yes)
ifeq (${JCOPTER_USE_WCA},no)
rm -rf $(TARGET)/dist/classes.unopt; \
mv $(TARGET)/dist/classes $(TARGET)/dist/classes.unopt
java -Xmx1280M $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.jcopter.JCopter \
-c $(TARGET)/dist/classes.unopt -o $(TARGET)/dist --classdir $(TARGET)/dist/classes \
--no-use-wca $(JCOPTER_OPTIONS) $(MAIN_CLASS)
else
for target in ${WCET_METHOD}; do \
rm -rf $(TARGET)/dist/classes.unopt; \
mv $(TARGET)/dist/classes $(TARGET)/dist/classes.unopt; \
java -Xmx1280M $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.jcopter.JCopter \
-c $(TARGET)/dist/classes.unopt -o $(TARGET)/dist --classdir $(TARGET)/dist/classes \
--use-wca --wca-target $${target} $(JCOPTER_OPTIONS) $(MAIN_CLASS) || exit 1; \
done
endif
endif
cd $(TARGET)/dist/classes && jar cf ../lib/classes.jar *
# use SymbolManager for Paulo's version of JOPizer instead
java $(DEBUG_JOPIZER) $(TOOLS_CP) -Dmgci=false com.jopdesign.build.JOPizer \
-cp $(TARGET)/dist/lib/classes.jar -o $(TARGET)/dist/bin/$(JOPBIN) $(MAIN_CLASS)
# java $(DEBUG_JOPIZER) $(TOOLS_CP) -Dmgci=false com.jopdesign.debug.jdwp.jop.JopSymbolManager \
# -cp $(TARGET)/dist/lib/classes.jar -o $(TARGET)/dist/bin/$(JOPBIN) $(MAIN_CLASS)
java $(TOOLS_CP) com.jopdesign.tools.jop2dat $(TARGET)/dist/bin/$(JOPBIN)
cp *.dat modelsim
rm -f *.dat
jcopter_help:
java $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.jcopter.JCopter --help
@echo "[make] Default JCopter options:"
@echo "[make] JCOPTER_OPT=$(JCOPTER_OPT)"
@echo ""
# project.sof fiels are used to boot from the serial line
#
jopser:
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SERIAL
ifeq ($(XFPGA),true)
@echo $(XPROJ)
cd xilinx/$(XPROJ) && make
else
@echo $(QPROJ)
for target in $(QPROJ); do \
make qsyn -e QBT=$$target || exit; \
quartus_cpf -c -q 10MHz -g 3.3 -n p quartus/$$target/jop.sof rbf/jop.svf; \
done
endif
#
# project.rbf fiels are used to boot from the USB interface
#
jopusb:
make gen_mem -e ASM_SRC=jvm JVM_TYPE=USB
@echo $(QPROJ)
for target in $(QPROJ); do \
make qsyn -e QBT=$$target || exit; \
cd quartus/$$target && quartus_cpf -c jop.sof ../../rbf/$$target.rbf; \
done
#
# project.ttf files are used to boot from flash.
#
jopflash:
make gen_mem -e ASM_SRC=jvm JVM_TYPE=FLASH
@echo $(QPROJ)
for target in $(QPROJ); do \
make qsyn -e QBT=$$target || exit; \
quartus_cpf -c quartus/$$target/jop.sof ttf/$$target.ttf; \
done
BLOCK_SIZE=4096
#
# assemble the microcode and generate on-chip memory files
#
gen_mem:
rm -rf asm/generated
mkdir asm/generated
gcc -x c -E -C -P $(GCC_PARAMS) -D$(JVM_TYPE) asm/src/$(ASM_SRC).asm > asm/generated/jvmgen.asm
java $(TOOLS_CP) com.jopdesign.tools.Jopa -s asm/generated -d asm/generated jvmgen.asm
# generate Xilinx and Actel memory files
java $(TOOLS_CP) BlockGen -b $(BLOCK_SIZE) -pd -m xram_block asm/generated/ram.mif asm/generated/xram_block.vhd
java $(TOOLS_CP) BlockGen -b 16384 -pd -m xram_block asm/generated/ram.mif asm/generated/xv4ram_block.vhd
java $(TOOLS_CP) GenAsynROM -m actelram_initrom asm/generated/ram.mif asm/generated/actelram_initrom.vhd
# copy generated files into working directories
cp asm/generated/*.vhd vhdl
cp asm/generated/*.dat modelsim
#
# Quartus build process
# called by jopser, jopusb,...
#
qsyn:
echo $(QBT)
echo "building $(QBT)"
-rm -rf quartus/$(QBT)/db
-rm -f quartus/$(QBT)/jop.sof
-rm -f jbc/$(QBT).jbc
-rm -f rbf/$(QBT).rbf
quartus_map quartus/$(QBT)/jop
quartus_fit quartus/$(QBT)/jop
quartus_asm quartus/$(QBT)/jop
# quartus_tan quartus/$(QBT)/jop
quartus_sta quartus/$(QBT)/jop
#
# Modelsim target
# without the tools
#
sim: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && make
#
# Modelsim target for CMP version of JOP
# without the tools
#
sim_cmp: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && make cmp
sim_csp: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && make csp
#
# Modelsim target for Gomspace CSP in JOP
#
sim_iic: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && make iic
#
# JopSim target
# without the tools
# use -Dcpucnt=# for a CMP simulation
#
jsim: java_app
java $(DEBUG_JOPSIM) -cp java/tools/dist/lib/jop-tools.jar -Dlog="false" \
com.jopdesign.tools.JopSim java/target/dist/bin/$(JOPBIN)
#
# Simulate RTTM (Jopsim target)
#
jtmsim: java_app
java $(DEBUG_JOPSIM) -cp java/tools/dist/lib/jop-tools.jar -Dcpucnt=$(CORE_CNT) \
com.jopdesign.tools.TMSim java/target/dist/bin/$(JOPBIN)
#
# Simulate RTTM (Modelsim target)
#
tmsim: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && ./sim_tm.bat -i -do sim_tm.do
tmsimcon: java_app
make gen_mem -e ASM_SRC=jvm JVM_TYPE=SIMULATION
cd modelsim && ./sim_tm.bat -c -do sim_tm_con.do
#
# RTTM tests on hardware
#
ifeq ($(USB),true)
TEST_JAPP_CONFIG=config_usb
else
TEST_JAPP_CONFIG=config_byteblaster
endif
test_japp: java_app $(TEST_JAPP_CONFIG) test_download
rttm_tests:
for t in `find java/target/src/test/rttm/tests/*.java -printf %f\\\\n|sed 's/\.java//'`; do \
make test_japp -e P1=test P2=rttm/tests P3=$$t REFERENCE_PATTERN=java/target/src/test/rttm/tests/$$t.pattern || exit; \
done
test_download:
./down $(COM_FLAG) java/target/dist/bin/$(JOPBIN) $(COM_PORT)|java $(TOOLS_CP) com.jopdesign.tools.MatchPattern $(REFERENCE_PATTERN)
#
# Simulate data cache
#
dcsim: java_app
java $(DEBUG_JOPSIM) -cp java/tools/dist/lib/jop-tools.jar \
com.jopdesign.tools.DCacheSim java/target/dist/bin/$(JOPBIN)
#
# JopServer target
# without the tools
#
jsim_server: java_app
java $(DEBUG_JOPSIM) \
-cp java/tools/dist/lib/jop-tools.jar$(S)$(TOOLS)/dist/lib/JopDebugger.jar -Dlog="false" \
com.jopdesign.debug.jdwp.jop.JopServer java/target/dist/bin/$(JOPBIN)
config_byteblaster:
cd quartus/$(DLPROJ) && quartus_pgm -c $(BLASTER_TYPE) -m JTAG jop.cdf
config_usb:
cd rbf && ../$(USBRUNNER) $(DLPROJ).rbf
config_xilinx:
cd xilinx/$(XPROJ) && make config
download:
# this is the Java version for downloading
# java -cp java/tools/dist/lib/jop-tools.jar$(S)$(JAVA_RXTX_LIB) com.jopdesign.tools.JavaDown \
# $(COM_FLAG) java/target/dist/bin/$(JOPBIN) $(COM_PORT)
# this is the download version with down.exe
$(DOWN) $(COM_FLAG) java/target/dist/bin/$(JOPBIN) $(COM_PORT)
#
# flash programming
#
prog_flash: java_app
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;jbc/$(DLPROJ).jbc
down java/target/dist/bin/$(JOPBBIN) $(COM_PORT)
java -cp java/pc/dist/lib/jop-pc.jar udp.Flash java/target/dist/bin/$(JOPBIN) $(IPDEST)
java -cp java/pc/dist/lib/jop-pc.jar udp.Flash ttf/$(FLPROJ).ttf $(IPDEST)
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;quartus/cycconf/cyc_conf.pof
#
# flash programming for the BG hardware as an example
#
#prog_flash:
# quartus_pgm -c ByteblasterMV -m JTAG -o p\;jbc/$(DLPROG).jbc
# cd java/target && ./build.bat app oebb BgInit
# down java/target/dist/bin/oebb_BgInit.jop $(COM_PORT)
# cd java/target && ./build.bat app oebb Main
# java -cp java/pc/dist/lib/jop-pc.jar udp.Flash java/target/dist/bin/oebb_Main.jop 192.168.1.2
# java -cp java/pc/dist/lib/jop-pc.jar udp.Flash ttf/$(FLPROJ).ttf 192.168.1.2
# quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;quartus/cycconf/cyc_conf.pof
erase_flash:
java -cp java/pc/dist/lib/jop-pc.jar udp.Erase $(IPDEST)
pld_init:
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;quartus/cycconf/cyc_conf_init.pof
pld_conf:
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;quartus/cycconf/cyc_conf.pof
oebb:
java -cp java/pc/dist/lib/jop-pc.jar udp.Flash java/target/dist/bin/oebb_Main.jop 192.168.1.2
# do the whole build process including flash programming
# for BG and baseio (TAL)
bg: directories tools jopflash jopser prog_flash
#
# some directories for configuration files
#
directories: jbc ttf rbf
jbc:
mkdir jbc
ttf:
mkdir ttf
rbf:
mkdir rbf
#
# this line configures the FPGA and programs the PLD
# but uses a .jbc file
#
# However, the order is not so perfect. We would prefere to first
# program the PLD.
#
xxx:
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;jbc/cycbg.jbc
quartus_pgm -c $(BLASTER_TYPE) -m JTAG -o p\;jbc/cyc_conf.jbc
#
# JOP porting test programs
#
# TODO: combine all quartus stuff to a single target
#
jop_blink_test:
make gen_mem -e ASM_SRC=blink JVM_TYPE=NOOP
@echo $(QPROJ)
for target in $(QPROJ); do \
echo "building $$target"; \
rm -rf quartus/$$target/db; \
qp="quartus/$$target/jop"; \
echo $$qp; \
quartus_map $$qp; \
quartus_fit $$qp; \
quartus_asm $$qp; \
# quartus_tan $$qp; \
quartus_sta $$qp; \
cd quartus/$$target && quartus_cpf -c jop.sof ../../rbf/$$target.rbf; \
done
make config
e $(COM_PORT)
jop_testmon:
make gen_mem -e ASM_SRC=testmon JVM_TYPE=NOOP
@echo $(QPROJ)
for target in $(QPROJ); do \
echo "building $$target"; \
rm -rf quartus/$$target/db; \
qp="quartus/$$target/jop"; \
echo $$qp; \
quartus_map $$qp; \
quartus_fit $$qp; \
quartus_asm $$qp; \
# quartus_tan $$qp; \
quartus_sta $$qp; \
cd quartus/$$target && quartus_cpf -c jop.sof ../../rbf/$$target.rbf; \
done
make config
#
# UDP debugging
#
udp_dbg:
java -cp java/pc/dist/lib/jop-pc.jar udp.UDPDbg
# set library path to current directory for the Mac
DYLD_FALLBACK_LIBRARY_PATH:=.:$(DYLD_FALLBACK_LIBRARY_PATH)
export DYLD_FALLBACK_LIBRARY_PATH
# WCET analyzer
# make before : java_app
# make after (dot): (cd java/target/wcet/<project-name>; make)
#
# Makefile options:
# WCET_UPPAAL: whether to use modelchecking for WCET analysis
# WCET_VERIFYTA: UPPAAL verifier executable
# WCET_OPTIONS: Additional WCET options (run 'make wcet_help')
#
# Profiling: add -Xss16M -agentlib:hprof=cpu=samples,interval=2,depth=8 to java arguments
# On Mac don't forget:
# export DYLD_FALLBACK_LIBRARY_PATH=.
WCET_DFA?=$(USE_DFA)
WCET_UPPAAL?=no
WCET_VERIFYTA?=verifyta # only needed if WCET_UPPAAL=yes
wcet:
-mkdir -p $(TARGET)/wcet
# Reading the classes.jar does not work correctly for optimized code because we need the sourcelines.txt
for target in $(WCET_METHOD); do \
java -Xss16M -Xmx1280M $(JAVA_OPT) \
$(TOOLS_CP) com.jopdesign.wcet.WCETAnalysis \
--classpath $(TARGET)/dist/classes --sp $(TARGET_SOURCE) \
--target-method $${target} \
-o "$(TARGET)/wcet/\$${projectname}" \
--use-dfa $(WCET_DFA) $(DFA_CACHE) \
--uppaal $(WCET_UPPAAL) --uppaal-verifier $(WCET_VERIFYTA) \
--callstring-length $(CALLSTRING_LENGTH) \
$(WCET_OPTIONS) $(MAIN_CLASS) || exit 1; \
done
# WCET help
wcet_help:
java $(TOOLS_CP) com.jopdesign.wcet.WCETAnalysis --help
# report works for wcet.WCETAnalyser
WCET_REPORT_DIR=$(TARGET)/wcet/$(subst /,_,$(P2))_$(P3)_$(WCET_METHOD)/report
wcet_report:
cd $(WCET_REPORT_DIR) && make
firefox $(WCET_REPORT_DIR)/index.html
dfa:
java -Xss16M $(TOOLS_CP) com.jopdesign.dfa.Main \
-cp $(TARGET)/dist/lib/classes.jar $(MAIN_CLASS)
test:
java $(TOOLS_CP) com.jopdesign.wcet.CallGraph \
-cp $(TARGET)/dist/lib/classes.jar -o $(TARGET)/wcet/$(P3)call.txt -sp $(TARGET_SOURCE) $(MAIN_CLASS)
###### end of Makefile #######
#
# some MS specific setting - just ignore it
#
#
# test AppInfo
# MS: some temporary targets for AppInfo and libgraph tests
#
appinfo: tools
java $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.build.AppInfo \
-cp $(TARGET)/dist/lib/classes.jar $(MAIN_CLASS)
testapp: tools
make java_app
-mkdir $(TARGET)/xxx
java $(DEBUG_JOPIZER) $(TOOLS_CP) com.jopdesign.build.WCETPreprocess \
-cp $(TARGET)/dist/lib/classes.jar -o $(TARGET)/xxx $(MAIN_CLASS)
java $(DEBUG_JOPIZER) $(TOOLS_CP) -Dmgci=false com.jopdesign.build.JOPizer \
-cp $(TARGET)/xxx -o $(TARGET)/dist/bin/$(JOPBIN) $(MAIN_CLASS)