MIPS Hex Output - PullRequest
       14

MIPS Hex Output

2 голосов
/ 23 февраля 2012

Мне интересно, есть ли способ написать файл на языке ассемблера MIPS (просто очень простой тестовый файл) с расширением .s, как это используется в симуляторе PCSpim, а затем заставить его скомпилировать код и создать файл с шестнадцатеричный вывод, как будто я должен был загрузить его на реальный чип MIPS.

Может ли SPIM или другое подобное программное обеспечение сделать это? Не могли бы вы немного подробнее рассказать о процессе сборки от сборки MIPS до реального исполняемого файла, который использует микроконтроллер?

Спасибо


РЕДАКТИРОВАТЬ: Итак, я работаю на Ubuntu Linux с установленным GCC. У меня есть mipsTest.s файл mips, который является следующим

 .text
 add $7, $0, $0

Теперь в командной строке я набираю

gcc -c -o mipsy.o mipsTest.s

И ошибка, которую я получаю, говорит

mipsTest.s: Assembler messages:
mipsTest.s:2: Error: at most 2 immediate operands are allowed.

Так что для меня это означает, что ассемблер не читает язык mips, возможно, он предполагает, что мой файл ассемблера находится в x86? Как получить кросс-компилятор, чтобы gcc распознавал язык ассемблера MIPS вместо x86? (или как он сейчас интерпретирует мой файл mipsTest.s) Спасибо!

РЕДАКТИРОВАТЬ 2: Так что я погуглил "mips cross-assemblyr" и нашел несколько вещей. Самым многообещающим оказался проект кросс-ассемблера UMP на sourceforge. Поэтому я скачал umps2.0, который должен быть стабильной версией. Я распутал все, что запускал «./configure», как указано в файле readme. Затем моя консоль выдала мне следующую ошибку, которая не позволяет мне выполнить команду make ...

jonathan@mini-heiretic:~/Documents/cross-compiler/umps-2.0$ ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking how to run the C preprocessor... gcc -E
checking whether ln -s works... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
checking how to convert i686-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... mt
checking if mt is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking dependency style of gcc... gcc3
checking for ld used by gcc... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for elf_version in -lelf... no
configure: error: *** Libelf not found. Specify a different path or install it. --help for info.

Есть ли лучшие варианты, которые я должен попробовать, или кто-нибудь может предоставить информацию о моей ошибке?

РЕДАКТИРОВАТЬ 3: После загрузки Libelf, я теперь могу немного углубиться в скрипт настройки для UMP. Вот вывод, начиная с недавно успешной строки elf_version

checking for elf_version in -lelf... yes
checking for dlopen in -ldl... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for SIGCPP... no
configure: error: Package requirements (sigc++-2.0) were not met:

No package 'sigc++-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables SIGCPP_CFLAGS
and SIGCPP_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Итак, я запустил быструю sudo apt-get install sigc ++ - 2.0, но не смог найти пакет ... предложения?

РЕДАКТИРОВАТЬ 4: Вот ошибка, которую я получаю, когда пытаюсь использовать Makefile

jonathan@mini-heiretic:~/Documents/cross-compiler/dwelch67-pic32_samples-f34fb22/blinker01$ make
mips-sde-elf-as -EL -G0 --warn --fatal-warnings blinker01.s -o blinker01.o
make: mips-sde-elf-as: Command not found
make: *** [blinker01.o] Error 127

1 Ответ

3 голосов
/ 23 февраля 2012

Вы можете использовать gcc , среди прочего, для кросс-компиляции или сборки источника языка ассемблера MIPS. Что касается процесса, то существует взаимно-однозначное соответствие между мнемоникой языка ассемблера и машинными инструкциями. Ассемблер просто делает перевод для вас.

Редактировать: вы не используете кросс-ассемблер, вы используете собственный gcc системы. Этот набор инструментов предположительно предназначен для процессоров Intel, у которых нет инструкции с 3 операндами add. Вам нужно использовать кросс-ассемблер для MIPS. Загрузите и установите двоичный файл или создайте набор инструментов самостоятельно. Тогда у вас будет кросс-компилятор (может быть, mips-gcc или что-то в этом роде), который вы можете использовать для сборки исходных файлов MIPS.

...