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

Side by Side Diff: src/x64/code-stubs-x64.cc

Issue 6880286: Fixed compilation breakage due to warnings. TBR... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 7 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/ia32/code-stubs-ia32.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 } 639 }
640 640
641 641
642 const char* TypeRecordingUnaryOpStub::GetName() { 642 const char* TypeRecordingUnaryOpStub::GetName() {
643 if (name_ != NULL) return name_; 643 if (name_ != NULL) return name_;
644 const int kMaxNameLength = 100; 644 const int kMaxNameLength = 100;
645 name_ = Isolate::Current()->bootstrapper()->AllocateAutoDeletedArray( 645 name_ = Isolate::Current()->bootstrapper()->AllocateAutoDeletedArray(
646 kMaxNameLength); 646 kMaxNameLength);
647 if (name_ == NULL) return "OOM"; 647 if (name_ == NULL) return "OOM";
648 const char* op_name = Token::Name(op_); 648 const char* op_name = Token::Name(op_);
649 const char* overwrite_name; 649 const char* overwrite_name = NULL; // Make g++ happy.
650 switch (mode_) { 650 switch (mode_) {
651 case UNARY_NO_OVERWRITE: overwrite_name = "Alloc"; break; 651 case UNARY_NO_OVERWRITE: overwrite_name = "Alloc"; break;
652 case UNARY_OVERWRITE: overwrite_name = "Overwrite"; break; 652 case UNARY_OVERWRITE: overwrite_name = "Overwrite"; break;
653 } 653 }
654 654
655 OS::SNPrintF(Vector<char>(name_, kMaxNameLength), 655 OS::SNPrintF(Vector<char>(name_, kMaxNameLength),
656 "TypeRecordingUnaryOpStub_%s_%s_%s", 656 "TypeRecordingUnaryOpStub_%s_%s_%s",
657 op_name, 657 op_name,
658 overwrite_name, 658 overwrite_name,
659 TRUnaryOpIC::GetName(operand_type_)); 659 TRUnaryOpIC::GetName(operand_type_));
(...skipping 4155 matching lines...) Expand 10 before | Expand all | Expand 10 after
4815 // Do a tail call to the rewritten stub. 4815 // Do a tail call to the rewritten stub.
4816 __ jmp(rdi); 4816 __ jmp(rdi);
4817 } 4817 }
4818 4818
4819 4819
4820 #undef __ 4820 #undef __
4821 4821
4822 } } // namespace v8::internal 4822 } } // namespace v8::internal
4823 4823
4824 #endif // V8_TARGET_ARCH_X64 4824 #endif // V8_TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698