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

Side by Side Diff: src/hydrogen.h

Issue 1094863002: Remove the weak list of views from array buffers (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates 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 | « src/heap/objects-visiting-inl.h ('k') | src/hydrogen.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_HYDROGEN_H_ 5 #ifndef V8_HYDROGEN_H_
6 #define V8_HYDROGEN_H_ 6 #define V8_HYDROGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/accessors.h" 10 #include "src/accessors.h"
(...skipping 2228 matching lines...) Expand 10 before | Expand all | Expand 10 after
2239 F(GetPrototype) \ 2239 F(GetPrototype) \
2240 /* Strings */ \ 2240 /* Strings */ \
2241 F(StringGetLength) \ 2241 F(StringGetLength) \
2242 /* JSValue */ \ 2242 /* JSValue */ \
2243 F(JSValueGetValue) 2243 F(JSValueGetValue)
2244 2244
2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call); 2245 #define GENERATOR_DECLARATION(Name) void Generate##Name(CallRuntime* call);
2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION) 2246 FOR_EACH_HYDROGEN_INTRINSIC(GENERATOR_DECLARATION)
2247 #undef GENERATOR_DECLARATION 2247 #undef GENERATOR_DECLARATION
2248 2248
2249 void GenerateArrayBufferViewIndirectAccessor(CallRuntime* call,
2250 HObjectAccess access);
2251
2249 void VisitDelete(UnaryOperation* expr); 2252 void VisitDelete(UnaryOperation* expr);
2250 void VisitVoid(UnaryOperation* expr); 2253 void VisitVoid(UnaryOperation* expr);
2251 void VisitTypeof(UnaryOperation* expr); 2254 void VisitTypeof(UnaryOperation* expr);
2252 void VisitNot(UnaryOperation* expr); 2255 void VisitNot(UnaryOperation* expr);
2253 2256
2254 void VisitComma(BinaryOperation* expr); 2257 void VisitComma(BinaryOperation* expr);
2255 void VisitLogicalExpression(BinaryOperation* expr); 2258 void VisitLogicalExpression(BinaryOperation* expr);
2256 void VisitArithmeticExpression(BinaryOperation* expr); 2259 void VisitArithmeticExpression(BinaryOperation* expr);
2257 2260
2258 void VisitLoopBody(IterationStatement* stmt, 2261 void VisitLoopBody(IterationStatement* stmt,
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after
3038 } 3041 }
3039 3042
3040 private: 3043 private:
3041 HGraphBuilder* builder_; 3044 HGraphBuilder* builder_;
3042 }; 3045 };
3043 3046
3044 3047
3045 } } // namespace v8::internal 3048 } } // namespace v8::internal
3046 3049
3047 #endif // V8_HYDROGEN_H_ 3050 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/heap/objects-visiting-inl.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698