view graal/com.oracle.truffle.codegen.processor/src/com/oracle/truffle/codegen/processor/TruffleProcessor.java @ 7342:c10ee98124e3

short-circuit isAssignableFrom test in arraycopy intrinsification
author Doug Simon <doug.simon@oracle.com>
date Sat, 12 Jan 2013 00:11:23 +0100
parents a748e4d44694
children 6343a09b2ec1
line wrap: on
line source

/*
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */
package com.oracle.truffle.codegen.processor;

import java.lang.annotation.*;
import java.util.*;

import javax.annotation.processing.*;
import javax.lang.model.*;
import javax.lang.model.element.*;

import com.oracle.truffle.codegen.processor.ProcessorContext.ProcessCallback;
import com.oracle.truffle.codegen.processor.operation.*;
import com.oracle.truffle.codegen.processor.typesystem.*;

/**
 * THIS IS NOT PUBLIC API.
 */
//@SupportedAnnotationTypes({"com.oracle.truffle.codegen.Operation", "com.oracle.truffle.codegen.TypeLattice"})
@SupportedSourceVersion(SourceVersion.RELEASE_7)
public class TruffleProcessor extends AbstractProcessor implements ProcessCallback {

    private ProcessorContext context;
    private List<AnnotationProcessor< ? >> generators;

    private RoundEnvironment round;

    @Override
    public boolean process(Set< ? extends TypeElement> annotations, RoundEnvironment roundEnv) {
        if (!roundEnv.processingOver()) {
            processImpl(roundEnv);
        }
        return false;
    }

    @SuppressWarnings("unchecked")
    private void processImpl(RoundEnvironment env) {
        this.round = env;
        // TODO run verifications that other annotations are not processed out of scope of the operation or typelattice.
        try {
            for (AnnotationProcessor generator : getGenerators()) {
                for (Element e : env.getElementsAnnotatedWith(generator.getParser().getAnnotationType())) {
                    processElement(env, generator, e, false);
                }
            }
        } finally {
            this.round = null;
        }
    }

    private static void processElement(RoundEnvironment env, AnnotationProcessor generator, Element e, boolean callback) {
        try {
            generator.process(env, e, callback);
        } catch (Throwable e1) {
            handleThrowable(generator, e1, e);
        }
    }

    private static void handleThrowable(AnnotationProcessor generator, Throwable t, Element e) {
        String message = "Uncaught error in " + generator.getClass().getSimpleName() + " while processing " + e;
        generator.getContext().getLog().error(e, message + ": " + Utils.printException(t));
    }

    @SuppressWarnings("unchecked")
    @Override
    public void callback(TypeElement template) {
        for (AnnotationProcessor generator : generators) {
            Annotation annotation = template.getAnnotation(generator.getParser().getAnnotationType());
            if (annotation != null) {
                processElement(round, generator, template, true);
            }
        }
    }

    @Override
    public Set<String> getSupportedAnnotationTypes() {
        Set<String> annotations = new HashSet<>();
        for (AnnotationProcessor< ? > generator : getGenerators()) {
            annotations.add(generator.getParser().getAnnotationType().getCanonicalName());
        }
        return annotations;
    }

    private List<AnnotationProcessor< ? >> getGenerators() {
        if (generators == null && processingEnv != null) {
            generators = new ArrayList<>();
            generators.add(new AnnotationProcessor<>(getContext(), new TypeSystemParser(getContext()), new TypeSystemCodeGenerator(getContext())));
            generators.add(new AnnotationProcessor<>(getContext(), new OperationParser(getContext()), new OperationCodeGenerator(getContext())));
        }
        return generators;
    }

    private ProcessorContext getContext() {
        if (context == null) {
            context = new ProcessorContext(processingEnv, this);
        }
        return context;
    }

    @Override
    public synchronized void init(ProcessingEnvironment env) {
        this.processingEnv = env;
        super.init(env);
    }

}