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

Side by Side Diff: src/assembler.h

Issue 597943003: Move i18n-related runtime functions into a separate file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: adapt check-name-clashes.py Created 6 years, 2 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/arm64/macro-assembler-arm64.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 23 matching lines...) Expand all
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 "src/v8.h" 38 #include "src/v8.h"
39 39
40 #include "src/allocation.h" 40 #include "src/allocation.h"
41 #include "src/builtins.h" 41 #include "src/builtins.h"
42 #include "src/gdb-jit.h" 42 #include "src/gdb-jit.h"
43 #include "src/isolate.h" 43 #include "src/isolate.h"
44 #include "src/runtime.h" 44 #include "src/runtime/runtime.h"
45 #include "src/token.h" 45 #include "src/token.h"
46 46
47 namespace v8 { 47 namespace v8 {
48 48
49 class ApiFunction; 49 class ApiFunction;
50 50
51 namespace internal { 51 namespace internal {
52 52
53 class StatsCounter; 53 class StatsCounter;
54 // ----------------------------------------------------------------------------- 54 // -----------------------------------------------------------------------------
(...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 NullCallWrapper() { } 1104 NullCallWrapper() { }
1105 virtual ~NullCallWrapper() { } 1105 virtual ~NullCallWrapper() { }
1106 virtual void BeforeCall(int call_size) const { } 1106 virtual void BeforeCall(int call_size) const { }
1107 virtual void AfterCall() const { } 1107 virtual void AfterCall() const { }
1108 }; 1108 };
1109 1109
1110 1110
1111 } } // namespace v8::internal 1111 } } // namespace v8::internal
1112 1112
1113 #endif // V8_ASSEMBLER_H_ 1113 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698