comparison src/share/vm/code/nmethod.cpp @ 10879:d55f24eac4b1

PTX support for Linux
author Morris Meyer <morris.meyer@oracle.com>
date Thu, 25 Jul 2013 22:15:30 -0400
parents 4acf032748b9
children f22cbff51c12 6b0fd0964b87
comparison
equal deleted inserted replaced
10878:d9fcc82766da 10879:d55f24eac4b1
948 memcpy(leaf_graph_ids_begin(), leaf_graph_ids->adr_at(0), leaf_graph_ids_size); 948 memcpy(leaf_graph_ids_begin(), leaf_graph_ids->adr_at(0), leaf_graph_ids_size);
949 } 949 }
950 950
951 // we use the information of entry points to find out if a method is 951 // we use the information of entry points to find out if a method is
952 // static or non static 952 // static or non static
953 assert(compiler->is_c2() || 953 assert(compiler->is_c2() || compiler->is_graal() ||
954 _method->is_static() == (entry_point() == _verified_entry_point), 954 _method->is_static() == (entry_point() == _verified_entry_point),
955 " entry points must be same for static methods and vice versa"); 955 " entry points must be same for static methods and vice versa");
956 } 956 }
957 957
958 bool printnmethods = PrintNMethods 958 bool printnmethods = PrintNMethods