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

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

Issue 2804033: ARM: Special code for raising to the power of an integer... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 5 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/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 (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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 923
924 void vldr(const SwVfpRegister dst, 924 void vldr(const SwVfpRegister dst,
925 const Register base, 925 const Register base,
926 int offset, // Offset must be a multiple of 4. 926 int offset, // Offset must be a multiple of 4.
927 const Condition cond = al); 927 const Condition cond = al);
928 928
929 void vstr(const DwVfpRegister src, 929 void vstr(const DwVfpRegister src,
930 const Register base, 930 const Register base,
931 int offset, // Offset must be a multiple of 4. 931 int offset, // Offset must be a multiple of 4.
932 const Condition cond = al); 932 const Condition cond = al);
933
934 void vmov(const DwVfpRegister dst,
935 const DwVfpRegister src,
936 const Condition cond = al);
933 void vmov(const DwVfpRegister dst, 937 void vmov(const DwVfpRegister dst,
934 const Register src1, 938 const Register src1,
935 const Register src2, 939 const Register src2,
936 const Condition cond = al); 940 const Condition cond = al);
937 void vmov(const Register dst1, 941 void vmov(const Register dst1,
938 const Register dst2, 942 const Register dst2,
939 const DwVfpRegister src, 943 const DwVfpRegister src,
940 const Condition cond = al); 944 const Condition cond = al);
941 void vmov(const SwVfpRegister dst, 945 void vmov(const SwVfpRegister dst,
942 const Register src, 946 const Register src,
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 1221
1218 friend class RegExpMacroAssemblerARM; 1222 friend class RegExpMacroAssemblerARM;
1219 friend class RelocInfo; 1223 friend class RelocInfo;
1220 friend class CodePatcher; 1224 friend class CodePatcher;
1221 friend class BlockConstPoolScope; 1225 friend class BlockConstPoolScope;
1222 }; 1226 };
1223 1227
1224 } } // namespace v8::internal 1228 } } // namespace v8::internal
1225 1229
1226 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1230 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698