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

Side by Side Diff: src/runtime.h

Issue 11563: Fixing the detection of aliased eval so that it is exact.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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
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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 F(DateCurrentTime, 0) \ 183 F(DateCurrentTime, 0) \
184 F(DateParseString, 1) \ 184 F(DateParseString, 1) \
185 F(DateLocalTimezone, 1) \ 185 F(DateLocalTimezone, 1) \
186 F(DateLocalTimeOffset, 0) \ 186 F(DateLocalTimeOffset, 0) \
187 F(DateDaylightSavingsOffset, 1) \ 187 F(DateDaylightSavingsOffset, 1) \
188 \ 188 \
189 /* Numbers */ \ 189 /* Numbers */ \
190 F(NumberIsFinite, 1) \ 190 F(NumberIsFinite, 1) \
191 \ 191 \
192 /* Globals */ \ 192 /* Globals */ \
193 F(CompileString, 3) \ 193 F(CompileString, 2) \
194 F(CompileScript, 4) \ 194 F(CompileScript, 4) \
195 F(GlobalPrint, 1) \ 195 F(GlobalPrint, 1) \
196 \ 196 \
197 /* Eval */ \ 197 /* Eval */ \
198 F(EvalReceiver, 1) \
199 F(GlobalReceiver, 1) \ 198 F(GlobalReceiver, 1) \
199 F(SetInPotentiallyDirectEval, 0) \
200 F(ClearInPotentiallyDirectEval, 0) \
201 F(InDirectEval, 0) \
202 F(ExecDirectEval, 1) \
200 \ 203 \
201 F(SetProperty, -1 /* 3 or 4 */) \ 204 F(SetProperty, -1 /* 3 or 4 */) \
202 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \ 205 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */) \
203 \ 206 \
204 /* Arrays */ \ 207 /* Arrays */ \
205 F(RemoveArrayHoles, 1) \ 208 F(RemoveArrayHoles, 1) \
206 F(GetArrayKeys, 2) \ 209 F(GetArrayKeys, 2) \
207 F(MoveArrayContents, 2) \ 210 F(MoveArrayContents, 2) \
208 F(EstimateNumberOfElements, 1) \ 211 F(EstimateNumberOfElements, 1) \
209 \ 212 \
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); 362 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
360 363
361 // Helper functions used stubs. 364 // Helper functions used stubs.
362 static void PerformGC(Object* result); 365 static void PerformGC(Object* result);
363 }; 366 };
364 367
365 368
366 } } // namespace v8::internal 369 } } // namespace v8::internal
367 370
368 #endif // V8_RUNTIME_H_ 371 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/parser.cc ('k') | src/runtime.cc » ('j') | test/cctest/test-api.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698