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

Side by Side Diff: src/runtime.h

Issue 9320: Semi-weekly merge from bleeding_edge to the toiger branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 12 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « src/property.h ('k') | src/runtime.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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 F(GetFunctionDelegate, 1) \ 59 F(GetFunctionDelegate, 1) \
60 F(NewArguments, 1) \ 60 F(NewArguments, 1) \
61 F(NewArgumentsFast, 3) \ 61 F(NewArgumentsFast, 3) \
62 F(LazyCompile, 1) \ 62 F(LazyCompile, 1) \
63 F(SetNewFunctionAttributes, 1) \ 63 F(SetNewFunctionAttributes, 1) \
64 \ 64 \
65 /* Array join support */ \ 65 /* Array join support */ \
66 F(PushIfAbsent, 2) \ 66 F(PushIfAbsent, 2) \
67 F(ArrayConcat, 1) \ 67 F(ArrayConcat, 1) \
68 \ 68 \
69 /* ConsStrings */ \
70 F(ConsStringFst, 1) \
71 F(ConsStringSnd, 1) \
72 \
73 /* Conversions */ \ 69 /* Conversions */ \
74 F(ToBool, 1) \ 70 F(ToBool, 1) \
75 F(Typeof, 1) \ 71 F(Typeof, 1) \
76 \ 72 \
77 F(StringToNumber, 1) \ 73 F(StringToNumber, 1) \
78 F(StringFromCharCodeArray, 1) \ 74 F(StringFromCharCodeArray, 1) \
79 F(StringParseInt, 2) \ 75 F(StringParseInt, 2) \
80 F(StringParseFloat, 1) \ 76 F(StringParseFloat, 1) \
81 F(StringToLowerCase, 1) \ 77 F(StringToLowerCase, 1) \
82 F(StringToUpperCase, 1) \ 78 F(StringToUpperCase, 1) \
83 F(CharFromCode, 1) \ 79 F(CharFromCode, 1) \
84 F(URIEscape, 1) \ 80 F(URIEscape, 1) \
85 F(URIUnescape, 1) \ 81 F(URIUnescape, 1) \
86 \ 82 \
87 F(NumberToString, 1) \ 83 F(NumberToString, 1) \
88 F(NumberToInteger, 1) \ 84 F(NumberToInteger, 1) \
89 F(NumberToJSUint32, 1) \ 85 F(NumberToJSUint32, 1) \
90 F(NumberToJSInt32, 1) \ 86 F(NumberToJSInt32, 1) \
87 F(NumberToSmi, 1) \
91 \ 88 \
92 /* Arithmetic operations */ \ 89 /* Arithmetic operations */ \
93 F(NumberAdd, 2) \ 90 F(NumberAdd, 2) \
94 F(NumberSub, 2) \ 91 F(NumberSub, 2) \
95 F(NumberMul, 2) \ 92 F(NumberMul, 2) \
96 F(NumberDiv, 2) \ 93 F(NumberDiv, 2) \
97 F(NumberMod, 2) \ 94 F(NumberMod, 2) \
98 F(NumberUnaryMinus, 1) \ 95 F(NumberUnaryMinus, 1) \
99 \ 96 \
100 F(StringAdd, 2) \ 97 F(StringAdd, 2) \
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
362 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); 359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
363 360
364 // Helper functions used stubs. 361 // Helper functions used stubs.
365 static void PerformGC(Object* result); 362 static void PerformGC(Object* result);
366 }; 363 };
367 364
368 365
369 } } // namespace v8::internal 366 } } // namespace v8::internal
370 367
371 #endif // V8_RUNTIME_H_ 368 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/property.h ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698