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

Unified Diff: src/code-stubs.h

Issue 7544012: Implement type recording for ToBoolean on x64. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 5 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/x64/code-stubs-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/code-stubs.h
===================================================================
--- src/code-stubs.h (revision 8763)
+++ src/code-stubs.h (working copy)
@@ -955,7 +955,11 @@
void CheckOddball(MacroAssembler* masm,
Type type,
+#if V8_TARGET_ARCH_IA32
danno 2011/08/01 11:36:13 Why don't you make CheckOddball a method in the Ma
Kevin Millikin (Chromium) 2011/08/01 11:51:55 I thought it was because it needs the types_. The
Handle<Object> value,
Kevin Millikin (Chromium) 2011/08/01 11:32:04 I don't really like using the preprocessor like th
+#else
+ Heap::RootListIndex value,
+#endif
bool result,
Label* patch);
void GenerateTypeTransition(MacroAssembler* masm);
« no previous file with comments | « no previous file | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698