comparison src/share/vm/graal/graalCompilerToVM.cpp @ 7126:ce248dc0a656

removed all Graal modifications to ci and c1
author Doug Simon <doug.simon@oracle.com>
date Mon, 03 Dec 2012 17:54:05 +0100
parents 1baf7f1e3f23
children 445193cc2a7d fcae6d960acd
comparison
equal deleted inserted replaced
7125:1baf7f1e3f23 7126:ce248dc0a656
46 46
47 // Entry to native method implementation that transitions current thread to '_thread_in_vm'. 47 // Entry to native method implementation that transitions current thread to '_thread_in_vm'.
48 #define C2V_VMENTRY(result_type, name, signature) \ 48 #define C2V_VMENTRY(result_type, name, signature) \
49 JNIEXPORT result_type JNICALL c2v_ ## name signature { \ 49 JNIEXPORT result_type JNICALL c2v_ ## name signature { \
50 TRACE_graal_3("CompilerToVM::" #name); \ 50 TRACE_graal_3("CompilerToVM::" #name); \
51 VM_ENTRY_MARK; \ 51 GRAAL_VM_ENTRY_MARK; \
52 52
53 // Entry to native method implementation that calls a JNI function 53 // Entry to native method implementation that calls a JNI function
54 // and hence cannot transition current thread to '_thread_in_vm'. 54 // and hence cannot transition current thread to '_thread_in_vm'.
55 #define C2V_ENTRY(result_type, name, signature) \ 55 #define C2V_ENTRY(result_type, name, signature) \
56 JNIEXPORT result_type JNICALL c2v_ ## name signature { \ 56 JNIEXPORT result_type JNICALL c2v_ ## name signature { \