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

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: Back out changes to include/v8.h 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
« no previous file with comments | « src/harmony-simd.js ('k') | src/hydrogen-instructions.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_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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 V(proto_string, "__proto__") \ 220 V(proto_string, "__proto__") \
221 V(arguments_string, "arguments") \ 221 V(arguments_string, "arguments") \
222 V(Arguments_string, "Arguments") \ 222 V(Arguments_string, "Arguments") \
223 V(caller_string, "caller") \ 223 V(caller_string, "caller") \
224 V(boolean_string, "boolean") \ 224 V(boolean_string, "boolean") \
225 V(Boolean_string, "Boolean") \ 225 V(Boolean_string, "Boolean") \
226 V(callee_string, "callee") \ 226 V(callee_string, "callee") \
227 V(constructor_string, "constructor") \ 227 V(constructor_string, "constructor") \
228 V(dot_result_string, ".result") \ 228 V(dot_result_string, ".result") \
229 V(eval_string, "eval") \ 229 V(eval_string, "eval") \
230 V(float32x4_string, "float32x4") \
231 V(Float32x4_string, "Float32x4") \
230 V(function_string, "function") \ 232 V(function_string, "function") \
231 V(Function_string, "Function") \ 233 V(Function_string, "Function") \
232 V(length_string, "length") \ 234 V(length_string, "length") \
233 V(name_string, "name") \ 235 V(name_string, "name") \
234 V(null_string, "null") \ 236 V(null_string, "null") \
235 V(number_string, "number") \ 237 V(number_string, "number") \
236 V(Number_string, "Number") \ 238 V(Number_string, "Number") \
237 V(nan_string, "NaN") \ 239 V(nan_string, "NaN") \
238 V(source_string, "source") \ 240 V(source_string, "source") \
239 V(source_url_string, "source_url") \ 241 V(source_url_string, "source_url") \
(...skipping 2630 matching lines...) Expand 10 before | Expand all | Expand 10 after
2870 DisallowHeapAllocation no_allocation; // i.e. no gc allowed. 2872 DisallowHeapAllocation no_allocation; // i.e. no gc allowed.
2871 2873
2872 private: 2874 private:
2873 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2875 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2874 }; 2876 };
2875 #endif // DEBUG 2877 #endif // DEBUG
2876 } 2878 }
2877 } // namespace v8::internal 2879 } // namespace v8::internal
2878 2880
2879 #endif // V8_HEAP_HEAP_H_ 2881 #endif // V8_HEAP_HEAP_H_
OLDNEW
« no previous file with comments | « src/harmony-simd.js ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698