~ubuntu-branches/ubuntu/vivid/libasm4-java/vivid

« back to all changes in this revision

Viewing changes to test/conform/org/objectweb/asm/test/cases/MethodParameters.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-04-15 13:44:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20140415134419-ko2fmcfd8t6y5r8o
Tags: 5.0.1-1
* Team upload.
* New upstream release
* Keep the prebuilt jars used for the tests in the source tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***
 
2
 * ASM: a very small and fast Java bytecode manipulation framework
 
3
 * Copyright (c) 2000-2011 INRIA, France Telecom
 
4
 * All rights reserved.
 
5
 *
 
6
 * Redistribution and use in source and binary forms, with or without
 
7
 * modification, are permitted provided that the following conditions
 
8
 * are met:
 
9
 * 1. Redistributions of source code must retain the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer.
 
11
 * 2. Redistributions in binary form must reproduce the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer in the
 
13
 *    documentation and/or other materials provided with the distribution.
 
14
 * 3. Neither the name of the copyright holders nor the names of its
 
15
 *    contributors may be used to endorse or promote products derived from
 
16
 *    this software without specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
19
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
20
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
21
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
22
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
23
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
24
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
25
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
26
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
27
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
28
 * THE POSSIBILITY OF SUCH DAMAGE.
 
29
 */
 
30
 
 
31
package org.objectweb.asm.test.cases;
 
32
 
 
33
import java.io.IOException;
 
34
 
 
35
import org.objectweb.asm.ClassVisitor;
 
36
import org.objectweb.asm.ClassWriter;
 
37
import org.objectweb.asm.MethodVisitor;
 
38
 
 
39
/**
 
40
 * Generates a class with 2 methods with method parameters.
 
41
 * 
 
42
 * @author Remi Forax
 
43
 */
 
44
public class MethodParameters extends Generator {
 
45
    @Override
 
46
    public void generate(final String dir) throws IOException {
 
47
        generate(dir, "pkg/MethodParameters.class", dumpCode());
 
48
    }
 
49
 
 
50
    public byte[] dumpCode() {
 
51
        ClassWriter cw = new ClassWriter(0);
 
52
        ClassVisitor cv = cw;
 
53
        cv.visit(V1_8, ACC_PUBLIC + ACC_ABSTRACT, "pkg/MethodParameters", null,
 
54
                "java/lang/Object", null);
 
55
 
 
56
        // static method
 
57
        MethodVisitor mv = cv.visitMethod(ACC_PUBLIC + ACC_STATIC, "m",
 
58
                "(ILjava/lang/Object;Ljava/lang/String;Ljava/lang/Object;I)V",
 
59
                null, null);
 
60
 
 
61
        // parameter 0 type int
 
62
        mv.visitParameter("i", 0);
 
63
        // parameter 1 type Object
 
64
        mv.visitParameter("o", ACC_FINAL);
 
65
        // parameter 2 type String
 
66
        mv.visitParameter("s", ACC_MANDATED);
 
67
        // parameter 3 type Object
 
68
        mv.visitParameter("o2", ACC_SYNTHETIC);
 
69
        // parameter 4 type Object
 
70
        mv.visitParameter("i2", ACC_FINAL + ACC_SYNTHETIC);
 
71
 
 
72
        mv.visitCode();
 
73
        mv.visitInsn(RETURN);
 
74
        mv.visitMaxs(0, 5);
 
75
        mv.visitEnd();
 
76
 
 
77
        // abstract method
 
78
        MethodVisitor mv2 = cv.visitMethod(ACC_PUBLIC + ACC_ABSTRACT, "m",
 
79
                "(J)V", null, null);
 
80
 
 
81
        // parameter 0 type long
 
82
        mv2.visitParameter("l", 0);
 
83
        mv2.visitEnd();
 
84
 
 
85
        cv.visitEnd();
 
86
        return cw.toByteArray();
 
87
    }
 
88
}