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

Side by Side Diff: src/heap/heap.h

Issue 1219943002: Expose SIMD.Float32x4 type to Javascript. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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
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_HEAP_HEAP_H_ 5 #ifndef V8_HEAP_HEAP_H_
6 #define V8_HEAP_HEAP_H_ 6 #define V8_HEAP_HEAP_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <map> 9 #include <map>
10 10
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 V(proto_string, "__proto__") \ 215 V(proto_string, "__proto__") \
216 V(arguments_string, "arguments") \ 216 V(arguments_string, "arguments") \
217 V(Arguments_string, "Arguments") \ 217 V(Arguments_string, "Arguments") \
218 V(caller_string, "caller") \ 218 V(caller_string, "caller") \
219 V(boolean_string, "boolean") \ 219 V(boolean_string, "boolean") \
220 V(Boolean_string, "Boolean") \ 220 V(Boolean_string, "Boolean") \
221 V(callee_string, "callee") \ 221 V(callee_string, "callee") \
222 V(constructor_string, "constructor") \ 222 V(constructor_string, "constructor") \
223 V(dot_result_string, ".result") \ 223 V(dot_result_string, ".result") \
224 V(eval_string, "eval") \ 224 V(eval_string, "eval") \
225 V(float32x4_string, "float32x4") \
226 V(Float32x4_string, "Float32x4") \
225 V(function_string, "function") \ 227 V(function_string, "function") \
226 V(Function_string, "Function") \ 228 V(Function_string, "Function") \
227 V(length_string, "length") \ 229 V(length_string, "length") \
228 V(name_string, "name") \ 230 V(name_string, "name") \
229 V(null_string, "null") \ 231 V(null_string, "null") \
230 V(number_string, "number") \ 232 V(number_string, "number") \
231 V(Number_string, "Number") \ 233 V(Number_string, "Number") \
232 V(nan_string, "NaN") \ 234 V(nan_string, "NaN") \
233 V(source_string, "source") \ 235 V(source_string, "source") \
234 V(source_url_string, "source_url") \ 236 V(source_url_string, "source_url") \
(...skipping 2617 matching lines...) Expand 10 before | Expand all | Expand 10 after
2852 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2854 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2853 2855
2854 private: 2856 private:
2855 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2857 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2856 }; 2858 };
2857 #endif // DEBUG 2859 #endif // DEBUG
2858 } 2860 }
2859 } // namespace v8::internal 2861 } // namespace v8::internal
2860 2862
2861 #endif // V8_HEAP_HEAP_H_ 2863 #endif // V8_HEAP_HEAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698