Home | History | Annotate | Download | only in images
      1 #!/bin/bash -e
      2 
      3 
      4 # Copyright (C) 2011-2012 The Android Open Source Project
      5 #
      6 # Licensed under the Apache License, Version 2.0 (the "License");
      7 # you may not use this file except in compliance with the License.
      8 # You may obtain a copy of the License at
      9 #
     10 #      http://www.apache.org/licenses/LICENSE-2.0
     11 #
     12 # Unless required by applicable law or agreed to in writing, software
     13 # distributed under the License is distributed on an "AS IS" BASIS,
     14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15 # See the License for the specific language governing permissions and
     16 # limitations under the License.
     17 
     18 
     19 CYAN='\033[1;36m'
     20 RESET='\033[m'
     21 
     22 echo -e "${CYAN}Generating bitcode ...${RESET}"
     23 clang -emit-llvm -std=c89 -Wall -c test.c -o test.bc
     24 clang -emit-llvm -std=c89 -Wall -c simple-test.c -o simple-test.bc
     25 clang -emit-llvm -std=c89 -Wall -c rodata-test.c -o rodata-test.bc
     26 
     27 function gen_test_cases {
     28   echo -e "${CYAN}Generating for $1 ...${RESET}"
     29   llc -filetype=obj -relocation-model=static -mtriple $2 $3 test.bc -o test-$1.o
     30   llc -filetype=obj -relocation-model=static -mtriple $2 $3 simple-test.bc -o simple-test-$1.o
     31   llc -filetype=obj -relocation-model=static -mtriple $2 $3 rodata-test.bc -o rodata-test-$1.o
     32 }
     33 
     34 gen_test_cases arm    armv7-none-linux-gnueabi
     35 gen_test_cases tegra2 armv7-none-linux-gnueabi '-mcpu=cortex-a9 -mattr=+vfp3'
     36 gen_test_cases thumb2 thumb-none-linux-gnueabi '-march=thumb -mattr=+thumb2'
     37 gen_test_cases thumb2lc thumb-none-linux-gnueabi '-mattr=+thumb2,+neonfp,+vfp3 -arm-long-calls'
     38 gen_test_cases thumb2lc-xoom thumb-none-linux-gnueabi '-mattr=+thumb2 -arm-long-calls'
     39 gen_test_cases x86_32 i686-none-linux
     40 gen_test_cases x86_64 x86_64-none-linux
     41 gen_test_cases mipsel mipsel-none-linux-gnueabi
     42