src/share/vm/c1/c1_InstructionPrinter.cpp

changeset 2486
403dc4c1d7f5
parent 2314
f95d63e2154a
child 2894
d4c1fbc3de95
     1.1 --- a/src/share/vm/c1/c1_InstructionPrinter.cpp	Thu Dec 30 23:44:45 2010 -0800
     1.2 +++ b/src/share/vm/c1/c1_InstructionPrinter.cpp	Fri Jan 21 13:01:02 2011 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -841,4 +841,13 @@
    1.11  
    1.12  }
    1.13  
    1.14 +void InstructionPrinter::do_RuntimeCall(RuntimeCall* x) {
    1.15 +  output()->print("call_rt %s(", x->entry_name());
    1.16 +  for (int i = 0; i < x->number_of_arguments(); i++) {
    1.17 +    if (i > 0) output()->print(", ");
    1.18 +    print_value(x->argument_at(i));
    1.19 +  }
    1.20 +  output()->put(')');
    1.21 +}
    1.22 +
    1.23  #endif // PRODUCT

mercurial