Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1095)

Unified Diff: src/arm/constants-arm.h

Issue 23536056: Thumb2 Backend: Enable Assembler to encode Thumb2 instructions Base URL: HEAD^
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/arm/assembler-thumb.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/arm/constants-arm.h
diff --git a/src/arm/constants-arm.h b/src/arm/constants-arm.h
index ded3af2ef52133522586323f3431e5f8acf6c257..60db9a4cd3e1caf764116596c01490a5ad232e72 100644
--- a/src/arm/constants-arm.h
+++ b/src/arm/constants-arm.h
@@ -477,6 +477,9 @@ enum {
BH14 = 1 << 30,
BH15 = 1 << 31,
+ MOVW_THUMB_IMM_MASK = (BH10 | 15*BH0 | 7*B12 | 15*B8 | 0xff),
+ MOVW_THUMB_MASK = BH15 | BH14 | BH13 | BH12 | BH9 | BH6,
+
// Instruction bit masks.
kCondMask = 15 << 28,
kALUMask = 0x6f << 21,
« no previous file with comments | « src/arm/assembler-thumb.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698