Java程序  |  55行  |  1.8 KB

/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

public final class Main {

  public void invokeVirtual() {
  }

  // CHECK-START: void Main.inlineSharpenInvokeVirtual(Main) inliner (before)
  // CHECK-DAG:     [[Invoke:v\d+]]  InvokeStaticOrDirect
  // CHECK-DAG:                      ReturnVoid

  // CHECK-START: void Main.inlineSharpenInvokeVirtual(Main) inliner (after)
  // CHECK-NOT:                      InvokeStaticOrDirect

  public static void inlineSharpenInvokeVirtual(Main m) {
    m.invokeVirtual();
  }

  // CHECK-START: int Main.inlineSharpenStringInvoke() inliner (before)
  // CHECK-DAG:     [[Invoke:i\d+]]  InvokeStaticOrDirect
  // CHECK-DAG:                      Return [ [[Invoke]] ]

  // CHECK-START: int Main.inlineSharpenStringInvoke() inliner (after)
  // CHECK-NOT:                      InvokeStaticOrDirect

  // CHECK-START: int Main.inlineSharpenStringInvoke() inliner (after)
  // CHECK-DAG:     [[Field:i\d+]]   InstanceFieldGet
  // CHECK-DAG:                      Return [ [[Field]] ]

  public static int inlineSharpenStringInvoke() {
    return "Foo".length();
  }

  public static void main(String[] args) {
    inlineSharpenInvokeVirtual(new Main());
    if (inlineSharpenStringInvoke() != 3) {
      throw new Error("Expected 3");
    }
  }
}