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

Side by Side Diff: src/builtins.h

Issue 57052: * String type inference using compiler framework. (Closed)
Patch Set: Changes relative to head of bleeding edge (don't do diff with earlier versions) Created 11 years, 8 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
« no previous file with comments | « src/ast.h ('k') | src/codegen-ia32.h » ('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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 V(SHR, 1) \ 117 V(SHR, 1) \
118 V(DELETE, 1) \ 118 V(DELETE, 1) \
119 V(IN, 1) \ 119 V(IN, 1) \
120 V(INSTANCE_OF, 1) \ 120 V(INSTANCE_OF, 1) \
121 V(GET_KEYS, 0) \ 121 V(GET_KEYS, 0) \
122 V(FILTER_KEY, 1) \ 122 V(FILTER_KEY, 1) \
123 V(CALL_NON_FUNCTION, 0) \ 123 V(CALL_NON_FUNCTION, 0) \
124 V(TO_OBJECT, 0) \ 124 V(TO_OBJECT, 0) \
125 V(TO_NUMBER, 0) \ 125 V(TO_NUMBER, 0) \
126 V(TO_STRING, 0) \ 126 V(TO_STRING, 0) \
127 V(STRING_ADD_LEFT, 1) \
128 V(STRING_ADD_RIGHT, 1) \
127 V(APPLY_PREPARE, 1) \ 129 V(APPLY_PREPARE, 1) \
128 V(APPLY_OVERFLOW, 1) 130 V(APPLY_OVERFLOW, 1)
129 131
130 132
131 class ObjectVisitor; 133 class ObjectVisitor;
132 134
133 135
134 class Builtins : public AllStatic { 136 class Builtins : public AllStatic {
135 public: 137 public:
136 // Generate all builtin code objects. Should be called once during 138 // Generate all builtin code objects. Should be called once during
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); 210 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm);
209 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); 211 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm);
210 212
211 static void Generate_FunctionCall(MacroAssembler* masm); 213 static void Generate_FunctionCall(MacroAssembler* masm);
212 static void Generate_FunctionApply(MacroAssembler* masm); 214 static void Generate_FunctionApply(MacroAssembler* masm);
213 }; 215 };
214 216
215 } } // namespace v8::internal 217 } } // namespace v8::internal
216 218
217 #endif // V8_BUILTINS_H_ 219 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/codegen-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698