Chromium Code Reviews| Index: src/x64/assembler-x64.h |
| =================================================================== |
| --- src/x64/assembler-x64.h (revision 6418) |
| +++ src/x64/assembler-x64.h (working copy) |
| @@ -590,6 +590,7 @@ |
| void popfq(); |
| void push(Immediate value); |
| + void push_imm32(int32_t imm32); |
|
Lasse Reichstein
2011/01/24 13:24:21
Add a comment stating why it's necessary to have t
Rico
2011/01/24 13:40:14
Done.
|
| void push(Register src); |
| void push(const Operand& src); |
| @@ -1122,6 +1123,7 @@ |
| // Conditional jumps |
| void j(Condition cc, Label* L); |
| + void j(Condition cc, byte* entry, RelocInfo::Mode rmode, Hint hint= no_hint); |
|
Lasse Reichstein
2011/01/24 13:24:21
We don't use hints in the X64 assembler.
Rico
2011/01/24 13:40:14
Done.
|
| void j(Condition cc, Handle<Code> target, RelocInfo::Mode rmode); |
| // Conditional short jump |