• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#
16# Configuration for ARMv5TE architecture targets.
17#
18
19handler-size 64
20
21# source for the instruction table stub
22asm-stub armv5te/stub.S
23
24# file header and basic definitions
25import c/header.c
26import armv5te/header.S
27
28# C pre-processor defines for stub C instructions
29import cstubs/stubdefs.c
30
31# highly-platform-specific defs
32import armv5te/platform.S
33
34# common defs for the C helpers; include this before the instruction handlers
35import c/opcommon.c
36
37# arch-specific entry point to interpreter
38import armv5te/entry.S
39
40# opcode list; argument to op-start is default directory
41op-start armv5te
42    #op OP_FILL_ARRAY_DATA c
43op-end
44
45# "helper" code for C; include if you use any of the C stubs (this generates
46# object code, so it's normally excluded)
47##import c/gotoTargets.c
48
49# end of defs; include this when cstubs/stubdefs.c is included
50import cstubs/enddefs.c
51
52# common subroutines for asm
53import armv5te/footer.S
54import armv5te/debug.c
55