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

Side by Side Diff: src/compiler/access-builder.h

Issue 1057813002: Fixed the range information for string lengths. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_COMPILER_ACCESS_BUILDER_H_ 5 #ifndef V8_COMPILER_ACCESS_BUILDER_H_
6 #define V8_COMPILER_ACCESS_BUILDER_H_ 6 #define V8_COMPILER_ACCESS_BUILDER_H_
7 7
8 #include "src/compiler/simplified-operator.h" 8 #include "src/compiler/simplified-operator.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 20 matching lines...) Expand all
31 // Provides access to JSArrayBuffer::backing_store() field. 31 // Provides access to JSArrayBuffer::backing_store() field.
32 static FieldAccess ForJSArrayBufferBackingStore(); 32 static FieldAccess ForJSArrayBufferBackingStore();
33 33
34 // Provides access to ExternalArray::external_pointer() field. 34 // Provides access to ExternalArray::external_pointer() field.
35 static FieldAccess ForExternalArrayPointer(); 35 static FieldAccess ForExternalArrayPointer();
36 36
37 // Provides access to Map::instance_type() field. 37 // Provides access to Map::instance_type() field.
38 static FieldAccess ForMapInstanceType(); 38 static FieldAccess ForMapInstanceType();
39 39
40 // Provides access to String::length() field. 40 // Provides access to String::length() field.
41 static FieldAccess ForStringLength(); 41 static FieldAccess ForStringLength(Zone* zone);
42 42
43 // Provides access to JSValue::value() field. 43 // Provides access to JSValue::value() field.
44 static FieldAccess ForValue(); 44 static FieldAccess ForValue();
45 45
46 // Provides access Context slots. 46 // Provides access Context slots.
47 static FieldAccess ForContextSlot(size_t index); 47 static FieldAccess ForContextSlot(size_t index);
48 48
49 // Provides access to the backing store of a StatsCounter. 49 // Provides access to the backing store of a StatsCounter.
50 static FieldAccess ForStatsCounter(); 50 static FieldAccess ForStatsCounter();
51 51
52 // Provides access to FixedArray elements. 52 // Provides access to FixedArray elements.
53 static ElementAccess ForFixedArrayElement(); 53 static ElementAccess ForFixedArrayElement();
54 54
55 // Provides access to Fixed{type}TypedArray and External{type}Array elements. 55 // Provides access to Fixed{type}TypedArray and External{type}Array elements.
56 static ElementAccess ForTypedArrayElement(ExternalArrayType type, 56 static ElementAccess ForTypedArrayElement(ExternalArrayType type,
57 bool is_external); 57 bool is_external);
58 58
59 // Provides access to the charaters of sequential strings. 59 // Provides access to the charaters of sequential strings.
60 static ElementAccess ForSeqStringChar(String::Encoding encoding); 60 static ElementAccess ForSeqStringChar(String::Encoding encoding);
61 61
62 private: 62 private:
63 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder); 63 DISALLOW_IMPLICIT_CONSTRUCTORS(AccessBuilder);
64 }; 64 };
65 65
66 } // namespace compiler 66 } // namespace compiler
67 } // namespace internal 67 } // namespace internal
68 } // namespace v8 68 } // namespace v8
69 69
70 #endif // V8_COMPILER_ACCESS_BUILDER_H_ 70 #endif // V8_COMPILER_ACCESS_BUILDER_H_
OLDNEW
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698