Searched refs:CompiledStaticCall (Results 1 - 20 of 20) sorted by relevance

/openjdk10/hotspot/src/cpu/zero/vm/
H A DcompiledIC_zero.cpp47 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
52 int CompiledStaticCall::to_interp_stub_size() {
58 int CompiledStaticCall::reloc_to_interp_stub() {
/openjdk10/hotspot/src/cpu/ppc/vm/
H A DcompiledIC_ppc.cpp82 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark/* = NULL*/) {
94 address stub = __ start_a_stub(CompiledStaticCall::to_interp_stub_size());
138 assert((__ offset() - stub_start_offset) <= CompiledStaticCall::to_interp_stub_size(),
156 int CompiledStaticCall::to_interp_stub_size() {
162 int CompiledStaticCall::reloc_to_interp_stub() {
/openjdk10/hotspot/src/cpu/x86/vm/
H A DcompiledIC_x86.cpp38 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
71 int CompiledStaticCall::to_interp_stub_size() {
77 int CompiledStaticCall::reloc_to_interp_stub() {
83 void CompiledStaticCall::emit_to_aot_stub(CodeBuffer &cbuf, address mark) {
122 int CompiledStaticCall::to_aot_stub_size() {
132 int CompiledStaticCall::reloc_to_aot_stub() {
/openjdk10/hotspot/src/cpu/arm/vm/
H A DcompiledIC_arm.cpp39 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
61 // CompiledStaticCall::set_to_interpreted()
89 int CompiledStaticCall::reloc_to_interp_stub() {
95 int CompiledStaticCall::to_interp_stub_size() {
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DcompiledIC_aarch64.cpp38 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
70 int CompiledStaticCall::to_interp_stub_size() {
75 int CompiledStaticCall::reloc_to_interp_stub() {
/openjdk10/hotspot/src/cpu/s390/vm/
H A DcompiledIC_s390.cpp43 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark/* = NULL*/) {
83 int CompiledStaticCall::to_interp_stub_size() {
89 int CompiledStaticCall::reloc_to_interp_stub() {
/openjdk10/hotspot/src/cpu/sparc/vm/
H A DcompiledIC_sparc.cpp40 address CompiledStaticCall::emit_to_interp_stub(CodeBuffer &cbuf, address mark) {
76 int CompiledStaticCall::to_interp_stub_size() {
84 int CompiledStaticCall::reloc_to_interp_stub() {
/openjdk10/hotspot/src/share/vm/aot/
H A DcompiledIC_aot.hpp32 class CompiledPltStaticCall: public CompiledStaticCall {
H A DaotCompiledMethod.hpp280 CompiledStaticCall* compiledStaticCall_at(Relocation* call_site) const;
281 CompiledStaticCall* compiledStaticCall_at(address addr) const;
282 CompiledStaticCall* compiledStaticCall_before(address addr) const;
H A DaotCompiledMethod.cpp414 CompiledStaticCall* AOTCompiledMethod::compiledStaticCall_at(Relocation* call_site) const {
418 CompiledStaticCall* AOTCompiledMethod::compiledStaticCall_at(address call_site) const {
422 CompiledStaticCall* AOTCompiledMethod::compiledStaticCall_before(address return_addr) const {
/openjdk10/hotspot/src/share/vm/code/
H A DcompiledIC.cpp542 void CompiledStaticCall::set_to_clean() {
558 bool CompiledStaticCall::is_clean() const {
562 bool CompiledStaticCall::is_call_to_compiled() const {
580 void CompiledStaticCall::set_to_compiled(address entry) {
593 void CompiledStaticCall::set(const StaticCallInfo& info) {
615 // Compute settings for a CompiledStaticCall. Since we might have to set
617 void CompiledStaticCall::compute_entry(const methodHandle& m, bool caller_is_nmethod, StaticCallInfo& info) {
H A DcompiledIC.hpp311 // The CompiledStaticCall represents a call to a static method in the compiled
334 friend class CompiledStaticCall;
342 class CompiledStaticCall : public ResourceObj { class in inherits:ResourceObj
385 class CompiledDirectStaticCall : public CompiledStaticCall {
H A DcompiledMethod.hpp37 class CompiledStaticCall;
349 virtual CompiledStaticCall* compiledStaticCall_at(Relocation* call_site) const = 0;
350 virtual CompiledStaticCall* compiledStaticCall_at(address addr) const = 0;
351 virtual CompiledStaticCall* compiledStaticCall_before(address addr) const = 0;
H A Dnmethod.hpp584 virtual CompiledStaticCall* compiledStaticCall_at(Relocation* call_site) const;
585 virtual CompiledStaticCall* compiledStaticCall_at(address addr) const;
586 virtual CompiledStaticCall* compiledStaticCall_before(address addr) const;
H A DcompiledMethod.cpp255 CompiledStaticCall *csc = compiledStaticCall_at(iter.reloc());
468 CompiledStaticCall* csc = compiledStaticCall_at(iter.reloc());
574 static bool clean_if_nmethod_is_unloaded(CompiledStaticCall *csc, BoolObjectClosure *is_alive, CompiledMethod* from) {
H A Dnmethod.cpp980 CompiledStaticCall *csc = compiledStaticCall_at(iter.reloc());
2824 CompiledStaticCall* nmethod::compiledStaticCall_at(Relocation* call_site) const {
2828 CompiledStaticCall* nmethod::compiledStaticCall_at(address call_site) const {
2832 CompiledStaticCall* nmethod::compiledStaticCall_before(address return_addr) const {
H A DrelocInfo.cpp718 CompiledStaticCall* handler = this->code()->compiledStaticCall_at(this);
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCodeInstaller.cpp729 int size = static_call_stubs * CompiledStaticCall::to_interp_stub_size();
731 size += aot_call_stubs * CompiledStaticCall::to_aot_stub_size();
1177 CompiledStaticCall::emit_to_interp_stub(buffer, _instructions->start() + pc_offset);
1181 CompiledStaticCall::emit_to_aot_stub(buffer, _instructions->start() + pc_offset);
/openjdk10/hotspot/src/share/vm/opto/
H A Doutput.cpp293 stub_size += CompiledStaticCall::to_interp_stub_size();
294 reloc_size += CompiledStaticCall::reloc_to_interp_stub();
296 stub_size += CompiledStaticCall::to_aot_stub_size();
297 reloc_size += CompiledStaticCall::reloc_to_aot_stub();
/openjdk10/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp1353 CompiledStaticCall::compute_entry(callee_method, is_nmethod, static_call_info);
1384 CompiledStaticCall* ssc = caller_nm->compiledStaticCall_before(caller_frame.pc());
1715 CompiledStaticCall* ssc = caller_nm->compiledStaticCall_at(call_addr);

Completed in 135 milliseconds