mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-16 00:54:38 +02:00
8003240: x86: move MacroAssembler into separate file
Reviewed-by: kvn
This commit is contained in:
parent
a533392684
commit
2c2c007448
79 changed files with 7667 additions and 7664 deletions
|
@ -254,6 +254,10 @@ address CodeBuffer::locator_address(int locator) const {
|
|||
return start + locator_pos(locator);
|
||||
}
|
||||
|
||||
bool CodeBuffer::is_backward_branch(Label& L) {
|
||||
return L.is_bound() && insts_end() <= locator_address(L.loc());
|
||||
}
|
||||
|
||||
address CodeBuffer::decode_begin() {
|
||||
address begin = _insts.start();
|
||||
if (_decode_begin != NULL && _decode_begin > begin)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue