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

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

Issue 24205004: Rollback trunk to 3.21.16.2 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 7 years, 3 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/win32-math.cc ('k') | src/x64/builtins-x64.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 are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 // fpu, tsc, cx8, cmov, mmx, sse, sse2, fxsr, syscall 497 // fpu, tsc, cx8, cmov, mmx, sse, sse2, fxsr, syscall
498 static const uint64_t kDefaultCpuFeatures = (1 << CMOV); 498 static const uint64_t kDefaultCpuFeatures = (1 << CMOV);
499 499
500 #ifdef DEBUG 500 #ifdef DEBUG
501 static bool initialized_; 501 static bool initialized_;
502 #endif 502 #endif
503 static uint64_t supported_; 503 static uint64_t supported_;
504 static uint64_t found_by_runtime_probing_only_; 504 static uint64_t found_by_runtime_probing_only_;
505 505
506 friend class ExternalReference; 506 friend class ExternalReference;
507 friend class PlatformFeatureScope;
508 DISALLOW_COPY_AND_ASSIGN(CpuFeatures); 507 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
509 }; 508 };
510 509
511 510
512 class Assembler : public AssemblerBase { 511 class Assembler : public AssemblerBase {
513 private: 512 private:
514 // We check before assembling an instruction that there is sufficient 513 // We check before assembling an instruction that there is sufficient
515 // space to write an instruction and its relocation information. 514 // space to write an instruction and its relocation information.
516 // The relocation writer's position must be kGap bytes above the end of 515 // The relocation writer's position must be kGap bytes above the end of
517 // the generated instructions. This leaves enough space for the 516 // the generated instructions. This leaves enough space for the
(...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after
1660 private: 1659 private:
1661 Assembler* assembler_; 1660 Assembler* assembler_;
1662 #ifdef DEBUG 1661 #ifdef DEBUG
1663 int space_before_; 1662 int space_before_;
1664 #endif 1663 #endif
1665 }; 1664 };
1666 1665
1667 } } // namespace v8::internal 1666 } } // namespace v8::internal
1668 1667
1669 #endif // V8_X64_ASSEMBLER_X64_H_ 1668 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/win32-math.cc ('k') | src/x64/builtins-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698