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

Side by Side Diff: src/runtime.h

Issue 7226: - Inlined JSArray::SetContent.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 2 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
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 22 matching lines...) Expand all
33 // The interface to C++ runtime functions. 33 // The interface to C++ runtime functions.
34 34
35 // ---------------------------------------------------------------------------- 35 // ----------------------------------------------------------------------------
36 // RUNTIME_FUNCTION_LIST_ALWAYS defines runtime calls available in both 36 // RUNTIME_FUNCTION_LIST_ALWAYS defines runtime calls available in both
37 // release and debug mode. 37 // release and debug mode.
38 // This macro should only be used by the macro RUNTIME_FUNCTION_LIST. 38 // This macro should only be used by the macro RUNTIME_FUNCTION_LIST.
39 39
40 #define RUNTIME_FUNCTION_LIST_ALWAYS(F) \ 40 #define RUNTIME_FUNCTION_LIST_ALWAYS(F) \
41 /* Property access */ \ 41 /* Property access */ \
42 F(GetProperty, 2) \ 42 F(GetProperty, 2) \
43 F(KeyedGetProperty, 2) \
43 F(DeleteProperty, 2) \ 44 F(DeleteProperty, 2) \
44 F(HasLocalProperty, 2) \ 45 F(HasLocalProperty, 2) \
45 F(HasProperty, 2) \ 46 F(HasProperty, 2) \
46 F(HasElement, 2) \ 47 F(HasElement, 2) \
47 F(IsPropertyEnumerable, 2) \ 48 F(IsPropertyEnumerable, 2) \
48 F(GetPropertyNames, 1) \ 49 F(GetPropertyNames, 1) \
49 F(GetPropertyNamesFast, 1) \ 50 F(GetPropertyNamesFast, 1) \
50 F(GetArgumentsProperty, 1) \ 51 F(GetArgumentsProperty, 1) \
51 \ 52 \
52 F(IsInPrototypeChain, 2) \ 53 F(IsInPrototypeChain, 2) \
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); 353 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key);
353 354
354 // Helper functions used stubs. 355 // Helper functions used stubs.
355 static void PerformGC(Object* result); 356 static void PerformGC(Object* result);
356 }; 357 };
357 358
358 359
359 } } // namespace v8::internal 360 } } // namespace v8::internal
360 361
361 #endif // V8_RUNTIME_H_ 362 #endif // V8_RUNTIME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698