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

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

Issue 223843002: ARM64: Fixes and more support for FRINT<X> instructions. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 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/arm64/assembler-arm64.cc ('k') | src/arm64/macro-assembler-arm64-inl.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 inline void Fneg(const FPRegister& fd, const FPRegister& fn); 380 inline void Fneg(const FPRegister& fd, const FPRegister& fn);
381 inline void Fnmadd(const FPRegister& fd, 381 inline void Fnmadd(const FPRegister& fd,
382 const FPRegister& fn, 382 const FPRegister& fn,
383 const FPRegister& fm, 383 const FPRegister& fm,
384 const FPRegister& fa); 384 const FPRegister& fa);
385 inline void Fnmsub(const FPRegister& fd, 385 inline void Fnmsub(const FPRegister& fd,
386 const FPRegister& fn, 386 const FPRegister& fn,
387 const FPRegister& fm, 387 const FPRegister& fm,
388 const FPRegister& fa); 388 const FPRegister& fa);
389 inline void Frinta(const FPRegister& fd, const FPRegister& fn); 389 inline void Frinta(const FPRegister& fd, const FPRegister& fn);
390 inline void Frintm(const FPRegister& fd, const FPRegister& fn);
390 inline void Frintn(const FPRegister& fd, const FPRegister& fn); 391 inline void Frintn(const FPRegister& fd, const FPRegister& fn);
391 inline void Frintz(const FPRegister& fd, const FPRegister& fn); 392 inline void Frintz(const FPRegister& fd, const FPRegister& fn);
392 inline void Fsqrt(const FPRegister& fd, const FPRegister& fn); 393 inline void Fsqrt(const FPRegister& fd, const FPRegister& fn);
393 inline void Fsub(const FPRegister& fd, 394 inline void Fsub(const FPRegister& fd,
394 const FPRegister& fn, 395 const FPRegister& fn,
395 const FPRegister& fm); 396 const FPRegister& fm);
396 inline void Hint(SystemHint code); 397 inline void Hint(SystemHint code);
397 inline void Hlt(int code); 398 inline void Hlt(int code);
398 inline void Isb(); 399 inline void Isb();
399 inline void Ldnp(const CPURegister& rt, 400 inline void Ldnp(const CPURegister& rt,
(...skipping 1899 matching lines...) Expand 10 before | Expand all | Expand 10 after
2299 #error "Unsupported option" 2300 #error "Unsupported option"
2300 #define CODE_COVERAGE_STRINGIFY(x) #x 2301 #define CODE_COVERAGE_STRINGIFY(x) #x
2301 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x) 2302 #define CODE_COVERAGE_TOSTRING(x) CODE_COVERAGE_STRINGIFY(x)
2302 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__) 2303 #define __FILE_LINE__ __FILE__ ":" CODE_COVERAGE_TOSTRING(__LINE__)
2303 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 2304 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
2304 #else 2305 #else
2305 #define ACCESS_MASM(masm) masm-> 2306 #define ACCESS_MASM(masm) masm->
2306 #endif 2307 #endif
2307 2308
2308 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_ 2309 #endif // V8_ARM64_MACRO_ASSEMBLER_ARM64_H_
OLDNEW
« no previous file with comments | « src/arm64/assembler-arm64.cc ('k') | src/arm64/macro-assembler-arm64-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698