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

Side by Side Diff: src/arm/macro-assembler-arm.h

Issue 11090021: Improve page flag checking sequence on ARM. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments. Created 8 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 | « no previous file | src/arm/macro-assembler-arm.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 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 Condition cond = al); 147 Condition cond = al);
148 // The scratch register is not used for ARMv7. 148 // The scratch register is not used for ARMv7.
149 // scratch can be the same register as src (in which case it is trashed), but 149 // scratch can be the same register as src (in which case it is trashed), but
150 // not the same as dst. 150 // not the same as dst.
151 void Bfi(Register dst, 151 void Bfi(Register dst,
152 Register src, 152 Register src,
153 Register scratch, 153 Register scratch,
154 int lsb, 154 int lsb,
155 int width, 155 int width,
156 Condition cond = al); 156 Condition cond = al);
157 void Bfc(Register dst, int lsb, int width, Condition cond = al); 157 void Bfc(Register dst, Register src, int lsb, int width, Condition cond = al);
158 void Usat(Register dst, int satpos, const Operand& src, 158 void Usat(Register dst, int satpos, const Operand& src,
159 Condition cond = al); 159 Condition cond = al);
160 160
161 void Call(Label* target); 161 void Call(Label* target);
162 162
163 // Register move. May do nothing if the registers are identical. 163 // Register move. May do nothing if the registers are identical.
164 void Move(Register dst, Handle<Object> value); 164 void Move(Register dst, Handle<Object> value);
165 void Move(Register dst, Register src, Condition cond = al); 165 void Move(Register dst, Register src, Condition cond = al);
166 void Move(DoubleRegister dst, DoubleRegister src); 166 void Move(DoubleRegister dst, DoubleRegister src);
167 167
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 1402 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
1403 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1403 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1404 #else 1404 #else
1405 #define ACCESS_MASM(masm) masm-> 1405 #define ACCESS_MASM(masm) masm->
1406 #endif 1406 #endif
1407 1407
1408 1408
1409 } } // namespace v8::internal 1409 } } // namespace v8::internal
1410 1410
1411 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1411 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/macro-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698