59
60 void casw(Register addr, Register newval, Register cmpval);
61 void casl(Register addr, Register newval, Register cmpval);
62
63 static const int max_tableswitches = 20;
64 struct tableswitch switches[max_tableswitches];
65 int tableswitch_count;
66
67 void init() { tableswitch_count = 0; }
68
69 void deoptimize_trap(CodeEmitInfo *info);
70
71 enum {
72 // call stub: CompiledDirectCall::to_interp_stub_size() +
73 // CompiledDirectCall::to_trampoline_stub_size()
74 _call_stub_size = 13 * NativeInstruction::instruction_size,
75 _exception_handler_size = DEBUG_ONLY(1*K) NOT_DEBUG(175),
76 _deopt_handler_size = 7 * NativeInstruction::instruction_size
77 };
78
79 public:
80
81 void store_parameter(Register r, int offset_from_esp_in_words);
82 void store_parameter(jint c, int offset_from_esp_in_words);
83 void store_parameter(jobject c, int offset_from_esp_in_words);
84
85 #endif // CPU_AARCH64_C1_LIRASSEMBLER_AARCH64_HPP
|
59
60 void casw(Register addr, Register newval, Register cmpval);
61 void casl(Register addr, Register newval, Register cmpval);
62
63 static const int max_tableswitches = 20;
64 struct tableswitch switches[max_tableswitches];
65 int tableswitch_count;
66
67 void init() { tableswitch_count = 0; }
68
69 void deoptimize_trap(CodeEmitInfo *info);
70
71 enum {
72 // call stub: CompiledDirectCall::to_interp_stub_size() +
73 // CompiledDirectCall::to_trampoline_stub_size()
74 _call_stub_size = 13 * NativeInstruction::instruction_size,
75 _exception_handler_size = DEBUG_ONLY(1*K) NOT_DEBUG(175),
76 _deopt_handler_size = 7 * NativeInstruction::instruction_size
77 };
78
79 void arraycopy_inlinetype_check(Register obj, Register tmp, CodeStub* slow_path, bool is_dest, bool null_check);
80 void move(LIR_Opr src, LIR_Opr dst);
81
82 public:
83
84 void store_parameter(Register r, int offset_from_esp_in_words);
85 void store_parameter(jint c, int offset_from_esp_in_words);
86 void store_parameter(jobject c, int offset_from_esp_in_words);
87
88 #endif // CPU_AARCH64_C1_LIRASSEMBLER_AARCH64_HPP
|