Index: src/x64/assembler-x64.h |
diff --git a/src/x64/assembler-x64.h b/src/x64/assembler-x64.h |
index 9606e74a6ebf3637ede5ff766968eb7274e88c2b..91e7e6cc61dc74a7d3354559407a3dc339cf6241 100644 |
--- a/src/x64/assembler-x64.h |
+++ b/src/x64/assembler-x64.h |
@@ -567,6 +567,15 @@ class Assembler : public Malloced { |
static const byte kTestEaxByte = 0xA9; |
// One byte opcode for test al, 0xXX. |
static const byte kTestAlByte = 0xA8; |
+ // One byte opcode for nop. |
+ static const byte kNopByte = 0x90; |
+ |
+ // One byte prefix for a short conditional jump. |
+ static const byte kJccShortPrefix = 0x70; |
+ static const byte kJncShortOpcode = kJccShortPrefix | not_carry; |
+ static const byte kJcShortOpcode = kJccShortPrefix | carry; |
+ |
+ |
// --------------------------------------------------------------------------- |
// Code generation |