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