Searched refs:is_store (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp214 bool inline_unsafe_access(bool is_native_ptr, bool is_store, BasicType type, bool is_volatile);
215 bool inline_unsafe_prefetch(bool is_native_ptr, bool is_store, bool is_static);
620 const bool is_store = true; local
659 case vmIntrinsics::_getObject: return inline_unsafe_access(!is_native_ptr, !is_store, T_OBJECT, !is_volatile);
660 case vmIntrinsics::_getBoolean: return inline_unsafe_access(!is_native_ptr, !is_store, T_BOOLEAN, !is_volatile);
661 case vmIntrinsics::_getByte: return inline_unsafe_access(!is_native_ptr, !is_store, T_BYTE, !is_volatile);
662 case vmIntrinsics::_getShort: return inline_unsafe_access(!is_native_ptr, !is_store, T_SHORT, !is_volatile);
663 case vmIntrinsics::_getChar: return inline_unsafe_access(!is_native_ptr, !is_store, T_CHAR, !is_volatile);
664 case vmIntrinsics::_getInt: return inline_unsafe_access(!is_native_ptr, !is_store, T_INT, !is_volatile);
665 case vmIntrinsics::_getLong: return inline_unsafe_access(!is_native_ptr, !is_store, T_LON
2276 inline_unsafe_access(bool is_native_ptr, bool is_store, BasicType type, bool is_volatile) argument
2504 inline_unsafe_prefetch(bool is_native_ptr, bool is_store, bool is_static) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.hpp369 bool append_unsafe_prefetch(ciMethod* callee, bool is_store, bool is_static);
H A Dc1_LIRGenerator.hpp251 void do_UnsafePrefetch(UnsafePrefetch* x, bool is_store);
H A Dc1_LIR.cpp1210 void LIR_List::prefetch(LIR_Address* addr, bool is_store) { argument
1212 is_store ? lir_prefetchw : lir_prefetchr,
H A Dc1_LIRGenerator.cpp2342 void LIRGenerator::do_UnsafePrefetch(UnsafePrefetch* x, bool is_store) { argument
2357 __ prefetch(addr, is_store);
H A Dc1_GraphBuilder.cpp4107 bool GraphBuilder::append_unsafe_prefetch(ciMethod* callee, bool is_static, bool is_store) { argument
4120 Instruction* op = is_store ? append(new UnsafePrefetchWrite(args->at(obj_arg_index), offset))
H A Dc1_LIR.hpp2078 void prefetch(LIR_Address* addr, bool is_store);

Completed in 337 milliseconds