comparison graal/com.oracle.truffle.api.codegen.test/src/com/oracle/truffle/api/codegen/test/package-info.java @ 8238:0b48dc5f37c3

Added truffle.api.codegen.test project with a BultinFunctionTest.
author Christian Humer <christian.humer@gmail.com>
date Fri, 01 Mar 2013 17:05:14 +0100
parents
children 703c09f8640c
comparison
equal deleted inserted replaced
8237:6b74ffe38183 8238:0b48dc5f37c3
1 /*
2 * Copyright (c) 2012, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23 /**
24 * <p>This package contains basic tests of the Truffle-Source-Code-Generation (short Codegen) API and serves at the same
25 * time as an introduction to the Codegen API for language implementors. Every test gives an example on how to use the construct explained in the class description.</p>
26 *
27 * <p>
28 * This API relies heavily on the concepts described in {@link com.oracle.truffle.api.test}. We assume that the
29 * reader is already familiarized with those concepts.
30 * </p>
31 *
32 * <p>
33 * TODO general description
34 * </p>
35 *
36 * <p>
37 * This introduction to Codegen contains items in the following recommended order:
38 *
39 * <ul>
40 * <li>How would you generate builtin functions? {@link com.oracle.truffle.api.codegen.test.BuiltinFunctionTest}</li>
41 * </ul>
42 * </p>
43 *
44 */
45 package com.oracle.truffle.api.codegen.test;
46