mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8144748: Move assembler/macroAssembler inline function definitions to corresponding inline.hpp files
Reviewed-by: kvn, coleenp
This commit is contained in:
parent
d60a09e9c5
commit
b5691de477
5 changed files with 659 additions and 307 deletions
|
@ -181,19 +181,6 @@ void MacroAssembler::null_check(Register reg, int offset) {
|
|||
|
||||
// Ring buffer jumps
|
||||
|
||||
#ifndef PRODUCT
|
||||
void MacroAssembler::ret( bool trace ) { if (trace) {
|
||||
mov(I7, O7); // traceable register
|
||||
JMP(O7, 2 * BytesPerInstWord);
|
||||
} else {
|
||||
jmpl( I7, 2 * BytesPerInstWord, G0 );
|
||||
}
|
||||
}
|
||||
|
||||
void MacroAssembler::retl( bool trace ) { if (trace) JMP(O7, 2 * BytesPerInstWord);
|
||||
else jmpl( O7, 2 * BytesPerInstWord, G0 ); }
|
||||
#endif /* PRODUCT */
|
||||
|
||||
|
||||
void MacroAssembler::jmp2(Register r1, Register r2, const char* file, int line ) {
|
||||
assert_not_delayed();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue