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

Side by Side Diff: src/ia32/assembler-ia32.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/i18n.cc ('k') | src/ia32/builtins-ia32.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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 } 554 }
555 555
556 private: 556 private:
557 #ifdef DEBUG 557 #ifdef DEBUG
558 static bool initialized_; 558 static bool initialized_;
559 #endif 559 #endif
560 static uint64_t supported_; 560 static uint64_t supported_;
561 static uint64_t found_by_runtime_probing_only_; 561 static uint64_t found_by_runtime_probing_only_;
562 562
563 friend class ExternalReference; 563 friend class ExternalReference;
564 friend class PlatformFeatureScope;
565 DISALLOW_COPY_AND_ASSIGN(CpuFeatures); 564 DISALLOW_COPY_AND_ASSIGN(CpuFeatures);
566 }; 565 };
567 566
568 567
569 class Assembler : public AssemblerBase { 568 class Assembler : public AssemblerBase {
570 private: 569 private:
571 // We check before assembling an instruction that there is sufficient 570 // We check before assembling an instruction that there is sufficient
572 // space to write an instruction and its relocation information. 571 // space to write an instruction and its relocation information.
573 // The relocation writer's position must be kGap bytes above the end of 572 // The relocation writer's position must be kGap bytes above the end of
574 // the generated instructions. This leaves enough space for the 573 // the generated instructions. This leaves enough space for the
(...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 private: 1234 private:
1236 Assembler* assembler_; 1235 Assembler* assembler_;
1237 #ifdef DEBUG 1236 #ifdef DEBUG
1238 int space_before_; 1237 int space_before_;
1239 #endif 1238 #endif
1240 }; 1239 };
1241 1240
1242 } } // namespace v8::internal 1241 } } // namespace v8::internal
1243 1242
1244 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1243 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/i18n.cc ('k') | src/ia32/builtins-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698