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

Side by Side Diff: src/assembler.h

Issue 157543002: A64: Synchronize with r18581. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 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
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/assembler.cc » ('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 (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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 static const int kMaxCallSize = 6; 255 static const int kMaxCallSize = 6;
256 256
257 // The maximum pc delta that will use the short encoding. 257 // The maximum pc delta that will use the short encoding.
258 static const int kMaxSmallPCDelta; 258 static const int kMaxSmallPCDelta;
259 259
260 enum Mode { 260 enum Mode {
261 // Please note the order is important (see IsCodeTarget, IsGCRelocMode). 261 // Please note the order is important (see IsCodeTarget, IsGCRelocMode).
262 CODE_TARGET, // Code target which is not any of the above. 262 CODE_TARGET, // Code target which is not any of the above.
263 CODE_TARGET_WITH_ID, 263 CODE_TARGET_WITH_ID,
264 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor. 264 CONSTRUCT_CALL, // code target that is a call to a JavaScript constructor.
265 CODE_TARGET_CONTEXT, // Code target used for contextual loads and stores.
266 DEBUG_BREAK, // Code target for the debugger statement. 265 DEBUG_BREAK, // Code target for the debugger statement.
267 EMBEDDED_OBJECT, 266 EMBEDDED_OBJECT,
268 CELL, 267 CELL,
269 268
270 // Everything after runtime_entry (inclusive) is not GC'ed. 269 // Everything after runtime_entry (inclusive) is not GC'ed.
271 RUNTIME_ENTRY, 270 RUNTIME_ENTRY,
272 JS_RETURN, // Marks start of the ExitJSFrame code. 271 JS_RETURN, // Marks start of the ExitJSFrame code.
273 COMMENT, 272 COMMENT,
274 POSITION, // See comment for kNoPosition above. 273 POSITION, // See comment for kNoPosition above.
275 STATEMENT_POSITION, // See comment for kNoPosition above. 274 STATEMENT_POSITION, // See comment for kNoPosition above.
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 public: 1035 public:
1037 NullCallWrapper() { } 1036 NullCallWrapper() { }
1038 virtual ~NullCallWrapper() { } 1037 virtual ~NullCallWrapper() { }
1039 virtual void BeforeCall(int call_size) const { } 1038 virtual void BeforeCall(int call_size) const { }
1040 virtual void AfterCall() const { } 1039 virtual void AfterCall() const { }
1041 }; 1040 };
1042 1041
1043 } } // namespace v8::internal 1042 } } // namespace v8::internal
1044 1043
1045 #endif // V8_ASSEMBLER_H_ 1044 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698