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

Unified Diff: src/objects.h

Issue 2738413002: [regexp] Port RegExpExecStub to CSA (mostly) (Closed)
Patch Set: Rebase Created 3 years, 9 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/mips64/interface-descriptors-mips64.cc ('k') | src/ppc/code-stubs-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index fadc5011a81e8704c1430670d96d92c3345cf6e6..dc9e29431ac0ff676a9bb7c57290caf175f8a3e1 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -8599,16 +8599,6 @@ class JSRegExp: public JSObject {
static const int kIrregexpDataSize = kIrregexpCaptureNameMapIndex + 1;
- // Offsets directly into the data fixed array.
- static const int kDataTagOffset =
- FixedArray::kHeaderSize + kTagIndex * kPointerSize;
- static const int kDataOneByteCodeOffset =
- FixedArray::kHeaderSize + kIrregexpLatin1CodeIndex * kPointerSize;
- static const int kDataUC16CodeOffset =
- FixedArray::kHeaderSize + kIrregexpUC16CodeIndex * kPointerSize;
- static const int kIrregexpCaptureCountOffset =
- FixedArray::kHeaderSize + kIrregexpCaptureCountIndex * kPointerSize;
-
// In-object fields.
static const int kLastIndexFieldIndex = 0;
static const int kInObjectFieldCount = 1;
« no previous file with comments | « src/mips64/interface-descriptors-mips64.cc ('k') | src/ppc/code-stubs-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698