/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
#include "precompiled.hpp"
#include "assembler_x86.inline.hpp"
#include "memory/resourceArea.hpp"
#include "prims/jniFastGetField.hpp"
#include "prims/jvm_misc.hpp"
#include "runtime/safepoint.hpp"
// Instead of issuing lfence for LoadLoad barrier, we create data dependency
// between loads, which is more efficient than lfence.
// Common register usage:
// c_rarg0: jni env
// c_rarg1: obj
// c_rarg2: jfield id
// Warning: do not use rip relative addressing after the first counter load
// since that may scratch r10!
const char *name;
switch (type) {
default: ShouldNotReachHere();
}
// robj ^ rcounter ^ rcounter == robj
// robj is data dependent on rcounter.
}
switch (type) {
default: ShouldNotReachHere();
}
// ca is data dependent on rax.
} else {
}
switch (type) {
}
// tail call
return fast_entry;
}
return generate_fast_get_int_field0(T_BOOLEAN);
}
return generate_fast_get_int_field0(T_BYTE);
}
return generate_fast_get_int_field0(T_CHAR);
}
return generate_fast_get_int_field0(T_SHORT);
}
return generate_fast_get_int_field0(T_INT);
}
return generate_fast_get_int_field0(T_LONG);
}
const char *name;
switch (type) {
default: ShouldNotReachHere();
}
// robj ^ rcounter ^ rcounter == robj
// robj is data dependent on rcounter.
}
switch (type) {
default: ShouldNotReachHere();
}
// counter address is data dependent on xmm0.
} else {
}
switch (type) {
}
// tail call
return fast_entry;
}
return generate_fast_get_float_field0(T_FLOAT);
}
return generate_fast_get_float_field0(T_DOUBLE);
}