Index: src/arm/constants-arm.h |
diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h |
index 4fa49e3d3c4e3dbc91d013be18f82901b0f2f269..2462ef3c8435c4e0fabd4e4166fc5b2c2b473767 100644 |
--- a/src/arm/constants-arm.h |
+++ b/src/arm/constants-arm.h |
@@ -258,7 +258,8 @@ enum { |
kCoprocessorMask = 15 << 8, |
kOpCodeMask = 15 << 21, // In data-processing instructions. |
kImm24Mask = (1 << 24) - 1, |
- kOff12Mask = (1 << 12) - 1 |
+ kOff12Mask = (1 << 12) - 1, |
+ kOff8Mask = (1 << 8) - 1 |
}; |
@@ -455,6 +456,9 @@ extern const Instr kMovLrPc; |
// ldr rd, [pc, #offset] |
extern const Instr kLdrPCMask; |
extern const Instr kLdrPCPattern; |
+// vldr dd, [pc, #offset] |
+extern const Instr kVldrDPCMask; |
+extern const Instr kVldrDPCPattern; |
// blxcc rm |
extern const Instr kBlxRegMask; |