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

Side by Side Diff: src/assembler.h

Issue 6931031: A tiny contribution for the IWYU day: Include allocation.h in every (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arguments.h ('k') | src/ast.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 (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 17 matching lines...) Expand all
28 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 28 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 30
31 // The original source code covered by the above license above has been 31 // The original source code covered by the above license above has been
32 // modified significantly by Google Inc. 32 // modified significantly by Google Inc.
33 // Copyright 2011 the V8 project authors. All rights reserved. 33 // Copyright 2011 the V8 project authors. All rights reserved.
34 34
35 #ifndef V8_ASSEMBLER_H_ 35 #ifndef V8_ASSEMBLER_H_
36 #define V8_ASSEMBLER_H_ 36 #define V8_ASSEMBLER_H_
37 37
38 #include "allocation.h"
38 #include "gdb-jit.h" 39 #include "gdb-jit.h"
39 #include "runtime.h" 40 #include "runtime.h"
40 #include "token.h" 41 #include "token.h"
41 42
42 namespace v8 { 43 namespace v8 {
43 namespace internal { 44 namespace internal {
44 45
45 const unsigned kNoASTId = -1; 46 const unsigned kNoASTId = -1;
46 // ----------------------------------------------------------------------------- 47 // -----------------------------------------------------------------------------
47 // Platform independent assembler base class. 48 // Platform independent assembler base class.
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
861 public: 862 public:
862 NullCallWrapper() { } 863 NullCallWrapper() { }
863 virtual ~NullCallWrapper() { } 864 virtual ~NullCallWrapper() { }
864 virtual void BeforeCall(int call_size) const { } 865 virtual void BeforeCall(int call_size) const { }
865 virtual void AfterCall() const { } 866 virtual void AfterCall() const { }
866 }; 867 };
867 868
868 } } // namespace v8::internal 869 } } // namespace v8::internal
869 870
870 #endif // V8_ASSEMBLER_H_ 871 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arguments.h ('k') | src/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698