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

Side by Side Diff: runtime/vm/constants_ia32.h

Issue 1005353004: ia32: Remove redundant CTX preservation from intrinsics; tweak definition of CTX. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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 | « runtime/vm/constants_arm64.h ('k') | runtime/vm/constants_mips.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_CONSTANTS_IA32_H_ 5 #ifndef VM_CONSTANTS_IA32_H_
6 #define VM_CONSTANTS_IA32_H_ 6 #define VM_CONSTANTS_IA32_H_
7 7
8 #include "platform/assert.h" 8 #include "platform/assert.h"
9 9
10 namespace dart { 10 namespace dart {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // Architecture independent aliases. 55 // Architecture independent aliases.
56 typedef XmmRegister FpuRegister; 56 typedef XmmRegister FpuRegister;
57 const FpuRegister FpuTMP = XMM0; 57 const FpuRegister FpuTMP = XMM0;
58 const int kNumberOfFpuRegisters = kNumberOfXmmRegisters; 58 const int kNumberOfFpuRegisters = kNumberOfXmmRegisters;
59 const FpuRegister kNoFpuRegister = kNoXmmRegister; 59 const FpuRegister kNoFpuRegister = kNoXmmRegister;
60 60
61 61
62 // Register aliases. 62 // Register aliases.
63 const Register TMP = kNoRegister; // No scratch register used by assembler. 63 const Register TMP = kNoRegister; // No scratch register used by assembler.
64 const Register TMP2 = kNoRegister; // No second assembler scratch register. 64 const Register TMP2 = kNoRegister; // No second assembler scratch register.
65 const Register CTX = ESI; // Caches current context in generated code. 65 const Register CTX = EDI; // Location of current context at method entry.
66 const Register PP = kNoRegister; // No object pool pointer. 66 const Register PP = kNoRegister; // No object pool pointer.
67 const Register SPREG = ESP; // Stack pointer register. 67 const Register SPREG = ESP; // Stack pointer register.
68 const Register FPREG = EBP; // Frame pointer register. 68 const Register FPREG = EBP; // Frame pointer register.
69 const Register ICREG = ECX; // IC data register. 69 const Register ICREG = ECX; // IC data register.
70 const Register ARGS_DESC_REG = EDX; // Arguments descriptor register. 70 const Register ARGS_DESC_REG = EDX; // Arguments descriptor register.
71 71
72 // Exception object is passed in this register to the catch handlers when an 72 // Exception object is passed in this register to the catch handlers when an
73 // exception is thrown. 73 // exception is thrown.
74 const Register kExceptionObjectReg = EAX; 74 const Register kExceptionObjectReg = EAX;
75 75
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 }; 140 };
141 141
142 142
143 // The largest multibyte nop we will emit. This could go up to 15 if it 143 // The largest multibyte nop we will emit. This could go up to 15 if it
144 // becomes important to us. 144 // becomes important to us.
145 const int MAX_NOP_SIZE = 8; 145 const int MAX_NOP_SIZE = 8;
146 146
147 } // namespace dart 147 } // namespace dart
148 148
149 #endif // VM_CONSTANTS_IA32_H_ 149 #endif // VM_CONSTANTS_IA32_H_
OLDNEW
« no previous file with comments | « runtime/vm/constants_arm64.h ('k') | runtime/vm/constants_mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698