Index: src/arm64/code-stubs-arm64.h |
diff --git a/src/arm64/code-stubs-arm64.h b/src/arm64/code-stubs-arm64.h |
index e11cb7a55f38c4fc5308a8b451fea58a783f708a..456b2bf82758de803214aa03ed64d730aceaec25 100644 |
--- a/src/arm64/code-stubs-arm64.h |
+++ b/src/arm64/code-stubs-arm64.h |
@@ -14,24 +14,6 @@ namespace internal { |
void ArrayNativeCode(MacroAssembler* masm, Label* call_generic_code); |
-class StoreBufferOverflowStub: public PlatformCodeStub { |
- public: |
- StoreBufferOverflowStub(Isolate* isolate, SaveFPRegsMode save_fp) |
- : PlatformCodeStub(isolate), save_doubles_(save_fp) { } |
- |
- void Generate(MacroAssembler* masm); |
- |
- static void GenerateFixedRegStubsAheadOfTime(Isolate* isolate); |
- virtual bool SometimesSetsUpAFrame() { return false; } |
- |
- private: |
- SaveFPRegsMode save_doubles_; |
- |
- Major MajorKey() const { return StoreBufferOverflow; } |
- uint32_t MinorKey() const { return (save_doubles_ == kSaveFPRegs) ? 1 : 0; } |
-}; |
- |
- |
class StringHelper : public AllStatic { |
public: |
// TODO(all): These don't seem to be used any more. Delete them. |
@@ -49,7 +31,24 @@ class StringHelper : public AllStatic { |
Register hash, |
Register scratch); |
+ // Compares two flat ASCII strings and returns result in x0. |
+ static void GenerateCompareFlatAsciiStrings( |
+ MacroAssembler* masm, Register left, Register right, Register scratch1, |
+ Register scratch2, Register scratch3, Register scratch4); |
+ |
+ // Compare two flat ASCII strings for equality and returns result in x0. |
+ static void GenerateFlatAsciiStringEquals(MacroAssembler* masm, Register left, |
+ Register right, Register scratch1, |
+ Register scratch2, |
+ Register scratch3); |
+ |
private: |
+ static void GenerateAsciiCharsCompareLoop(MacroAssembler* masm, Register left, |
+ Register right, Register length, |
+ Register scratch1, |
+ Register scratch2, |
+ Label* chars_not_equal); |
+ |
DISALLOW_IMPLICIT_CONSTRUCTORS(StringHelper); |
}; |
@@ -405,55 +404,6 @@ class NameDictionaryLookupStub: public PlatformCodeStub { |
LookupMode mode_; |
}; |
- |
-class SubStringStub: public PlatformCodeStub { |
- public: |
- explicit SubStringStub(Isolate* isolate) : PlatformCodeStub(isolate) {} |
- |
- private: |
- Major MajorKey() const { return SubString; } |
- uint32_t MinorKey() const { return 0; } |
- |
- void Generate(MacroAssembler* masm); |
-}; |
- |
- |
-class StringCompareStub: public PlatformCodeStub { |
- public: |
- explicit StringCompareStub(Isolate* isolate) : PlatformCodeStub(isolate) { } |
- |
- // Compares two flat ASCII strings and returns result in x0. |
- static void GenerateCompareFlatAsciiStrings(MacroAssembler* masm, |
- Register left, |
- Register right, |
- Register scratch1, |
- Register scratch2, |
- Register scratch3, |
- Register scratch4); |
- |
- // Compare two flat ASCII strings for equality and returns result |
- // in x0. |
- static void GenerateFlatAsciiStringEquals(MacroAssembler* masm, |
- Register left, |
- Register right, |
- Register scratch1, |
- Register scratch2, |
- Register scratch3); |
- |
- private: |
- virtual Major MajorKey() const { return StringCompare; } |
- virtual uint32_t MinorKey() const { return 0; } |
- virtual void Generate(MacroAssembler* masm); |
- |
- static void GenerateAsciiCharsCompareLoop(MacroAssembler* masm, |
- Register left, |
- Register right, |
- Register length, |
- Register scratch1, |
- Register scratch2, |
- Label* chars_not_equal); |
-}; |
- |
} } // namespace v8::internal |
#endif // V8_ARM64_CODE_STUBS_ARM64_H_ |