Searched refs:code_id (Results 1 - 2 of 2) sorted by relevance

/openjdk9/hotspot/src/share/vm/aot/
H A DaotCodeHeap.cpp283 void AOTCodeHeap::publish_aot(const methodHandle& mh, AOTMethodData* method_data, int code_id) { argument
299 _code_to_aot[code_id]._state = invalid;
303 jlong* state_adr = &_method_state[code_id];
306 assert(code_id < _method_count, "sanity");
316 if (_code_to_aot[code_id]._state == invalid) {
319 AOTCompiledMethod *aot = new AOTCompiledMethod(code, mh(), meta, metadata_table, metadata_size, state_adr, this, name, code_id, _aot_id);
320 assert(_code_to_aot[code_id]._aot == NULL, "should be not initialized");
321 _code_to_aot[code_id]._aot = aot; // Should set this first
322 if (Atomic::cmpxchg(in_use, (jint*)&_code_to_aot[code_id]._state, not_set) != not_set) {
323 _code_to_aot[code_id]
368 int code_id = stub_offsets[i]._code_id; local
[all...]
H A DaotCodeHeap.hpp223 void publish_aot(const methodHandle& mh, AOTMethodData* method_data, int code_id);

Completed in 80 milliseconds