comparison src/cpu/x86/vm/interpreter_x86.hpp @ 1972:f95d63e2154a

6989984: Use standard include model for Hospot Summary: Replaced MakeDeps and the includeDB files with more standardized solutions. Reviewed-by: coleenp, kvn, kamg
author stefank
date Tue, 23 Nov 2010 13:22:55 -0800
parents c18cbe5936b8
children 638119ce7cfd
comparison
equal deleted inserted replaced
1971:e33f46fc48ed 1972:f95d63e2154a
20 * or visit www.oracle.com if you need additional information or have any 20 * or visit www.oracle.com if you need additional information or have any
21 * questions. 21 * questions.
22 * 22 *
23 */ 23 */
24 24
25 #ifndef CPU_X86_VM_INTERPRETER_X86_HPP
26 #define CPU_X86_VM_INTERPRETER_X86_HPP
27
25 public: 28 public:
26 29
27 // Sentinel placed in the code for interpreter returns so 30 // Sentinel placed in the code for interpreter returns so
28 // that i2c adapters and osr code can recognize an interpreter 31 // that i2c adapters and osr code can recognize an interpreter
29 // return address and convert the return to a specialized 32 // return address and convert the return to a specialized
42 // Already negated by c++ interpreter 45 // Already negated by c++ interpreter
43 static int local_index_at(int i) { 46 static int local_index_at(int i) {
44 assert(i <= 0, "local direction already negated"); 47 assert(i <= 0, "local direction already negated");
45 return stackElementWords * i; 48 return stackElementWords * i;
46 } 49 }
50
51 #endif // CPU_X86_VM_INTERPRETER_X86_HPP