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

Unified Diff: src/ia32/assembler-ia32.h

Issue 547024: RegExp bitmap test for word character. (Closed)
Patch Set: Changed to char-map. Created 10 years, 11 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
Index: src/ia32/assembler-ia32.h
diff --git a/src/ia32/assembler-ia32.h b/src/ia32/assembler-ia32.h
index f35abd5756d5dcb3acba8652403a242ecd5071c1..1599e2e5ffaa6f3c5e8ca232b1d8025ee7ad5680 100644
--- a/src/ia32/assembler-ia32.h
+++ b/src/ia32/assembler-ia32.h
@@ -229,6 +229,7 @@ enum ScaleFactor {
times_2 = 1,
times_4 = 2,
times_8 = 3,
Erik Corry 2010/01/15 12:02:09 This is unused
+ times_int_size = times_4,
times_pointer_size = times_4,
times_half_pointer_size = times_2
};
@@ -624,6 +625,7 @@ class Assembler : public Malloced {
void test(Register reg, const Immediate& imm);
void test(Register reg, const Operand& op);
+ void test_b(Register reg, const Operand& op);
void test(const Operand& op, const Immediate& imm);
void xor_(Register dst, int32_t imm32);

Powered by Google App Engine
This is Rietveld 408576698