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

Unified Diff: src/macros.py

Issue 7018001: Micro-optimize passing of args to HasLocalProperty. (Closed)
Patch Set: Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/v8natives.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/macros.py
diff --git a/src/macros.py b/src/macros.py
index 69f36c09c050a7f7ddd4c81d969b9901f6c96786..f112994d3fd030041c59aa08b189b9b9f4eba18f 100644
--- a/src/macros.py
+++ b/src/macros.py
@@ -127,7 +127,7 @@ macro TO_INT32(arg) = (%_IsSmi(%IS_VAR(arg)) ? arg : (arg >> 0));
macro TO_UINT32(arg) = (arg >>> 0);
macro TO_STRING_INLINE(arg) = (IS_STRING(%IS_VAR(arg)) ? arg : NonStringToString(arg));
macro TO_NUMBER_INLINE(arg) = (IS_NUMBER(%IS_VAR(arg)) ? arg : NonNumberToNumber(arg));
-
+macro TO_OBJECT_INLINE(arg) = ((IS_OBJECT(%IS_VAR(arg)) && !IS_NULL_OR_UNDEFINED(arg)) ? arg : ToObject(arg));
Mads Ager (chromium) 2011/05/12 16:11:05 I wonder if what we should be using here is %_IsSp
Vitaly Repeshko 2011/05/12 16:19:24 You're right. It's simpler.
# Macros implemented in Python.
python macro CHAR_CODE(str) = ord(str[1]);
« no previous file with comments | « no previous file | src/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698