src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp

changeset 2314
f95d63e2154a
parent 2036
126ea7725993
child 6876
710a3c8b516e
equal deleted inserted replaced
2313:e33f46fc48ed 2314:f95d63e2154a
1 /* 1 /*
2 * Copyright (c) 2002, 2009, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
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_BYTECODEINTERPRETER_X86_INLINE_HPP
26 #define CPU_X86_VM_BYTECODEINTERPRETER_X86_INLINE_HPP
27
25 // Inline interpreter functions for IA32 28 // Inline interpreter functions for IA32
26 29
27 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) { return op1 + op2; } 30 inline jfloat BytecodeInterpreter::VMfloatAdd(jfloat op1, jfloat op2) { return op1 + op2; }
28 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) { return op1 - op2; } 31 inline jfloat BytecodeInterpreter::VMfloatSub(jfloat op1, jfloat op2) { return op1 - op2; }
29 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) { return op1 * op2; } 32 inline jfloat BytecodeInterpreter::VMfloatMul(jfloat op1, jfloat op2) { return op1 * op2; }
276 } 279 }
277 280
278 inline jbyte BytecodeInterpreter::VMint2Byte(jint val) { 281 inline jbyte BytecodeInterpreter::VMint2Byte(jint val) {
279 return (jbyte) val; 282 return (jbyte) val;
280 } 283 }
284
285 #endif // CPU_X86_VM_BYTECODEINTERPRETER_X86_INLINE_HPP

mercurial