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

Side by Side Diff: src/full-codegen.h

Issue 207823003: Rename A64 port to ARM64 port (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: retry Created 6 years, 9 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/frames-inl.h ('k') | src/globals.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 static const int kMaxBackEdgeWeight = 127; 121 static const int kMaxBackEdgeWeight = 127;
122 122
123 // Platform-specific code size multiplier. 123 // Platform-specific code size multiplier.
124 #if V8_TARGET_ARCH_IA32 124 #if V8_TARGET_ARCH_IA32
125 static const int kCodeSizeMultiplier = 100; 125 static const int kCodeSizeMultiplier = 100;
126 #elif V8_TARGET_ARCH_X64 126 #elif V8_TARGET_ARCH_X64
127 static const int kCodeSizeMultiplier = 162; 127 static const int kCodeSizeMultiplier = 162;
128 #elif V8_TARGET_ARCH_ARM 128 #elif V8_TARGET_ARCH_ARM
129 static const int kCodeSizeMultiplier = 142; 129 static const int kCodeSizeMultiplier = 142;
130 #elif V8_TARGET_ARCH_A64 130 #elif V8_TARGET_ARCH_ARM64
131 // TODO(all): Copied ARM value. Check this is sensible for A64. 131 // TODO(all): Copied ARM value. Check this is sensible for ARM64.
132 static const int kCodeSizeMultiplier = 142; 132 static const int kCodeSizeMultiplier = 142;
133 #elif V8_TARGET_ARCH_MIPS 133 #elif V8_TARGET_ARCH_MIPS
134 static const int kCodeSizeMultiplier = 142; 134 static const int kCodeSizeMultiplier = 142;
135 #else 135 #else
136 #error Unsupported target architecture. 136 #error Unsupported target architecture.
137 #endif 137 #endif
138 138
139 private: 139 private:
140 class Breakable; 140 class Breakable;
141 class Iteration; 141 class Iteration;
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 960
961 Address start_; 961 Address start_;
962 Address instruction_start_; 962 Address instruction_start_;
963 uint32_t length_; 963 uint32_t length_;
964 }; 964 };
965 965
966 966
967 } } // namespace v8::internal 967 } } // namespace v8::internal
968 968
969 #endif // V8_FULL_CODEGEN_H_ 969 #endif // V8_FULL_CODEGEN_H_
OLDNEW
« no previous file with comments | « src/frames-inl.h ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698