Home | History | Annotate | Download | only in mterp
      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 the portable interpreter.
     17 #
     18 
     19 handler-style all-c
     20 
     21 # C file header and basic definitions
     22 import c/header.cpp
     23 
     24 # C pre-processor defines for stub C instructions
     25 import portable/stubdefs.cpp
     26 
     27 # common defs for the C opcodes
     28 import c/opcommon.cpp
     29 
     30 # entry point
     31 import portable/entry.cpp
     32 
     33 # opcode list; argument to op-start is default directory
     34 op-start c
     35     # concatenate all C implementations
     36 op-end
     37 
     38 # "helper" code
     39 import c/gotoTargets.cpp
     40 
     41 # finish
     42 import portable/enddefs.cpp
     43