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

Side by Side Diff: src/assembler.h

Issue 6474026: Strict mode assignment to undefined reference. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix presubmit. Created 9 years, 10 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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 // code which are of interest when making stack traces to pin-point the source 174 // code which are of interest when making stack traces to pin-point the source
175 // location of a stack frame as close as possible. The "statement position" is 175 // location of a stack frame as close as possible. The "statement position" is
176 // collected at the beginning at each statement, and is used to indicate 176 // collected at the beginning at each statement, and is used to indicate
177 // possible break locations. kNoPosition is used to indicate an 177 // possible break locations. kNoPosition is used to indicate an
178 // invalid/uninitialized position value. 178 // invalid/uninitialized position value.
179 static const int kNoPosition = -1; 179 static const int kNoPosition = -1;
180 180
181 enum Mode { 181 enum Mode {
182 // Please note the order is important (see IsCodeTarget, IsGCRelocMode). 182 // Please note the order is important (see IsCodeTarget, IsGCRelocMode).
183 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor. 183 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor.
184 CODE_TARGET_CONTEXT, // Code target used for contextual loads. 184 CODE_TARGET_CONTEXT, // Code target used for contextual loads and stores.
185 DEBUG_BREAK, // Code target for the debugger statement. 185 DEBUG_BREAK, // Code target for the debugger statement.
186 CODE_TARGET, // Code target which is not any of the above. 186 CODE_TARGET, // Code target which is not any of the above.
187 EMBEDDED_OBJECT, 187 EMBEDDED_OBJECT,
188 GLOBAL_PROPERTY_CELL, 188 GLOBAL_PROPERTY_CELL,
189 189
190 // Everything after runtime_entry (inclusive) is not GC'ed. 190 // Everything after runtime_entry (inclusive) is not GC'ed.
191 RUNTIME_ENTRY, 191 RUNTIME_ENTRY,
192 JS_RETURN, // Marks start of the ExitJSFrame code. 192 JS_RETURN, // Marks start of the ExitJSFrame code.
193 COMMENT, 193 COMMENT,
194 POSITION, // See comment for kNoPosition above. 194 POSITION, // See comment for kNoPosition above.
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
763 return num_bits_set; 763 return num_bits_set;
764 } 764 }
765 765
766 // Computes pow(x, y) with the special cases in the spec for Math.pow. 766 // Computes pow(x, y) with the special cases in the spec for Math.pow.
767 double power_double_int(double x, int y); 767 double power_double_int(double x, int y);
768 double power_double_double(double x, double y); 768 double power_double_double(double x, double y);
769 769
770 } } // namespace v8::internal 770 } } // namespace v8::internal
771 771
772 #endif // V8_ASSEMBLER_H_ 772 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.cc ('k') | src/builtins.h » ('j') | src/stub-cache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698