Index: src/arm/macro-assembler-arm.h |
diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h |
index 97b2575fc3595007ab8f2708d30b3b71f3398679..aec078914f582036ee6805bbe7e0ac29e726e25c 100644 |
--- a/src/arm/macro-assembler-arm.h |
+++ b/src/arm/macro-assembler-arm.h |
@@ -661,6 +661,12 @@ class MacroAssembler: public Assembler { |
// handler chain. |
void ThrowUncatchable(Register value); |
+ // Throw a message string as an exception. |
+ void Throw(BailoutReason reason); |
+ |
+ // Throw a message string as an exception if a condition is not true. |
+ void ThrowIfNot(Condition cc, BailoutReason reason); |
+ |
// --------------------------------------------------------------------------- |
// Inline caching support |
@@ -1341,6 +1347,11 @@ class MacroAssembler: public Assembler { |
void JumpIfNotUniqueName(Register reg, Label* not_unique_name); |
+ void EmitSeqStringSetCharCheck(Register string, |
+ Register index, |
+ Register value, |
+ uint32_t encoding_mask); |
+ |
// --------------------------------------------------------------------------- |
// Patching helpers. |