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

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

Issue 6625084: ARM: Improved double to integer truncation.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 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 | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/lithium-arm.h » ('J')
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 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
982 const Condition cond = al); 982 const Condition cond = al);
983 void vcvt_f64_f32(const DwVfpRegister dst, 983 void vcvt_f64_f32(const DwVfpRegister dst,
984 const SwVfpRegister src, 984 const SwVfpRegister src,
985 VFPConversionMode mode = kDefaultRoundToZero, 985 VFPConversionMode mode = kDefaultRoundToZero,
986 const Condition cond = al); 986 const Condition cond = al);
987 void vcvt_f32_f64(const SwVfpRegister dst, 987 void vcvt_f32_f64(const SwVfpRegister dst,
988 const DwVfpRegister src, 988 const DwVfpRegister src,
989 VFPConversionMode mode = kDefaultRoundToZero, 989 VFPConversionMode mode = kDefaultRoundToZero,
990 const Condition cond = al); 990 const Condition cond = al);
991 991
992 void vneg(const DwVfpRegister dst,
993 const DwVfpRegister src,
994 const Condition cond = al);
Karl Klose 2011/03/09 10:37:51 The vneg instruction should also be supported by t
Alexandre 2011/03/15 08:45:39 Done.
992 void vabs(const DwVfpRegister dst, 995 void vabs(const DwVfpRegister dst,
993 const DwVfpRegister src, 996 const DwVfpRegister src,
994 const Condition cond = al); 997 const Condition cond = al);
995 void vadd(const DwVfpRegister dst, 998 void vadd(const DwVfpRegister dst,
996 const DwVfpRegister src1, 999 const DwVfpRegister src1,
997 const DwVfpRegister src2, 1000 const DwVfpRegister src2,
998 const Condition cond = al); 1001 const Condition cond = al);
999 void vsub(const DwVfpRegister dst, 1002 void vsub(const DwVfpRegister dst,
1000 const DwVfpRegister src1, 1003 const DwVfpRegister src1,
1001 const DwVfpRegister src2, 1004 const DwVfpRegister src2,
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1285 public: 1288 public:
1286 explicit EnsureSpace(Assembler* assembler) { 1289 explicit EnsureSpace(Assembler* assembler) {
1287 assembler->CheckBuffer(); 1290 assembler->CheckBuffer();
1288 } 1291 }
1289 }; 1292 };
1290 1293
1291 1294
1292 } } // namespace v8::internal 1295 } } // namespace v8::internal
1293 1296
1294 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1297 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | src/arm/lithium-arm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698