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

Side by Side Diff: src/runtime.h

Issue 6520004: Introduce new runtime function to make join with lower memory usage. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Following Anders' advice Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « src/array.js ('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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 F(NumberAdd, 2, 1) \ 121 F(NumberAdd, 2, 1) \
122 F(NumberSub, 2, 1) \ 122 F(NumberSub, 2, 1) \
123 F(NumberMul, 2, 1) \ 123 F(NumberMul, 2, 1) \
124 F(NumberDiv, 2, 1) \ 124 F(NumberDiv, 2, 1) \
125 F(NumberMod, 2, 1) \ 125 F(NumberMod, 2, 1) \
126 F(NumberUnaryMinus, 1, 1) \ 126 F(NumberUnaryMinus, 1, 1) \
127 F(NumberAlloc, 0, 1) \ 127 F(NumberAlloc, 0, 1) \
128 \ 128 \
129 F(StringAdd, 2, 1) \ 129 F(StringAdd, 2, 1) \
130 F(StringBuilderConcat, 3, 1) \ 130 F(StringBuilderConcat, 3, 1) \
131 F(StringBuilderJoin, 3, 1) \
131 \ 132 \
132 /* Bit operations */ \ 133 /* Bit operations */ \
133 F(NumberOr, 2, 1) \ 134 F(NumberOr, 2, 1) \
134 F(NumberAnd, 2, 1) \ 135 F(NumberAnd, 2, 1) \
135 F(NumberXor, 2, 1) \ 136 F(NumberXor, 2, 1) \
136 F(NumberNot, 1, 1) \ 137 F(NumberNot, 1, 1) \
137 \ 138 \
138 F(NumberShl, 2, 1) \ 139 F(NumberShl, 2, 1) \
139 F(NumberShr, 2, 1) \ 140 F(NumberShr, 2, 1) \
140 F(NumberSar, 2, 1) \ 141 F(NumberSar, 2, 1) \
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 int position); 558 int position);
558 559
559 // Helper functions used stubs. 560 // Helper functions used stubs.
560 static void PerformGC(Object* result); 561 static void PerformGC(Object* result);
561 }; 562 };
562 563
563 564
564 } } // namespace v8::internal 565 } } // namespace v8::internal
565 566
566 #endif // V8_RUNTIME_H_ 567 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/array.js ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698