| Index: src/x64/assembler-x64.h
|
| ===================================================================
|
| --- src/x64/assembler-x64.h (revision 7948)
|
| +++ src/x64/assembler-x64.h (working copy)
|
| @@ -333,22 +333,6 @@
|
| }
|
|
|
|
|
| -enum Hint {
|
| - no_hint = 0,
|
| - not_taken = 0x2e,
|
| - taken = 0x3e
|
| -};
|
| -
|
| -// The result of negating a hint is as if the corresponding condition
|
| -// were negated by NegateCondition. That is, no_hint is mapped to
|
| -// itself and not_taken and taken are mapped to each other.
|
| -inline Hint NegateHint(Hint hint) {
|
| - return (hint == no_hint)
|
| - ? no_hint
|
| - : ((hint == not_taken) ? taken : not_taken);
|
| -}
|
| -
|
| -
|
| // -----------------------------------------------------------------------------
|
| // Machine instruction Immediates
|
|
|
| @@ -1184,7 +1168,6 @@
|
| // but it may be bound only once.
|
|
|
| void bind(Label* L); // binds an unbound label L to the current code position
|
| - void bind(NearLabel* L);
|
|
|
| // Calls
|
| // Call near relative 32-bit displacement, relative to next instruction.
|
| @@ -1208,7 +1191,8 @@
|
| // Jumps
|
| // Jump short or near relative.
|
| // Use a 32-bit signed displacement.
|
| - void jmp(Label* L); // unconditional jump to L
|
| + // Unconditional jump to L
|
| + void jmp(Label* L, Label::Distance distance = Label::kFar);
|
| void jmp(Handle<Code> target, RelocInfo::Mode rmode);
|
|
|
| // Jump near absolute indirect (r64)
|
| @@ -1217,16 +1201,12 @@
|
| // Jump near absolute indirect (m64)
|
| void jmp(const Operand& src);
|
|
|
| - // Short jump
|
| - void jmp(NearLabel* L);
|
| -
|
| // Conditional jumps
|
| - void j(Condition cc, Label* L);
|
| + void j(Condition cc,
|
| + Label* L,
|
| + Label::Distance distance = Label::kFar);
|
| void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode);
|
|
|
| - // Conditional short jump
|
| - void j(Condition cc, NearLabel* L, Hint hint = no_hint);
|
| -
|
| // Floating-point operations
|
| void fld(int i);
|
|
|
|
|