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

Side by Side Diff: src/runtime.h

Issue 523051: Make the ResolvePossiblyDirectEval faster by avoiding the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 11 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/ia32/codegen-ia32.cc ('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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 \ 195 \
196 /* Numbers */ \ 196 /* Numbers */ \
197 F(NumberIsFinite, 1, 1) \ 197 F(NumberIsFinite, 1, 1) \
198 \ 198 \
199 /* Globals */ \ 199 /* Globals */ \
200 F(CompileString, 2, 1) \ 200 F(CompileString, 2, 1) \
201 F(GlobalPrint, 1, 1) \ 201 F(GlobalPrint, 1, 1) \
202 \ 202 \
203 /* Eval */ \ 203 /* Eval */ \
204 F(GlobalReceiver, 1, 1) \ 204 F(GlobalReceiver, 1, 1) \
205 F(ResolvePossiblyDirectEval, 2, 1) \ 205 F(ResolvePossiblyDirectEval, 3, 1) \
206 \ 206 \
207 F(SetProperty, -1 /* 3 or 4 */, 1) \ 207 F(SetProperty, -1 /* 3 or 4 */, 1) \
208 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ 208 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \
209 \ 209 \
210 /* Arrays */ \ 210 /* Arrays */ \
211 F(RemoveArrayHoles, 2, 1) \ 211 F(RemoveArrayHoles, 2, 1) \
212 F(GetArrayKeys, 2, 1) \ 212 F(GetArrayKeys, 2, 1) \
213 F(MoveArrayContents, 2, 1) \ 213 F(MoveArrayContents, 2, 1) \
214 F(EstimateNumberOfElements, 1, 1) \ 214 F(EstimateNumberOfElements, 1, 1) \
215 \ 215 \
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 int position); 420 int position);
421 421
422 // Helper functions used stubs. 422 // Helper functions used stubs.
423 static void PerformGC(Object* result); 423 static void PerformGC(Object* result);
424 }; 424 };
425 425
426 426
427 } } // namespace v8::internal 427 } } // namespace v8::internal
428 428
429 #endif // V8_RUNTIME_H_ 429 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/ia32/codegen-ia32.cc ('k') | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698