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

Side by Side Diff: src/arm/lithium-codegen-arm.cc

Issue 7860011: Rename SmartPointer to SmartArrayPointer. (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: rebase it again to get more fixes Created 9 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
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/ast.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 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 ASSERT(is_done()); 94 ASSERT(is_done());
95 code->set_stack_slots(GetStackSlotCount()); 95 code->set_stack_slots(GetStackSlotCount());
96 code->set_safepoint_table_offset(safepoints_.GetCodeOffset()); 96 code->set_safepoint_table_offset(safepoints_.GetCodeOffset());
97 PopulateDeoptimizationData(code); 97 PopulateDeoptimizationData(code);
98 Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(code); 98 Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(code);
99 } 99 }
100 100
101 101
102 void LCodeGen::Abort(const char* format, ...) { 102 void LCodeGen::Abort(const char* format, ...) {
103 if (FLAG_trace_bailout) { 103 if (FLAG_trace_bailout) {
104 SmartPointer<char> name(info()->shared_info()->DebugName()->ToCString()); 104 SmartArrayPointer<char> name(
105 info()->shared_info()->DebugName()->ToCString());
105 PrintF("Aborting LCodeGen in @\"%s\": ", *name); 106 PrintF("Aborting LCodeGen in @\"%s\": ", *name);
106 va_list arguments; 107 va_list arguments;
107 va_start(arguments, format); 108 va_start(arguments, format);
108 OS::VPrint(format, arguments); 109 OS::VPrint(format, arguments);
109 va_end(arguments); 110 va_end(arguments);
110 PrintF("\n"); 111 PrintF("\n");
111 } 112 }
112 status_ = ABORTED; 113 status_ = ABORTED;
113 } 114 }
114 115
(...skipping 4394 matching lines...) Expand 10 before | Expand all | Expand 10 after
4509 ASSERT(osr_pc_offset_ == -1); 4510 ASSERT(osr_pc_offset_ == -1);
4510 osr_pc_offset_ = masm()->pc_offset(); 4511 osr_pc_offset_ = masm()->pc_offset();
4511 } 4512 }
4512 4513
4513 4514
4514 4515
4515 4516
4516 #undef __ 4517 #undef __
4517 4518
4518 } } // namespace v8::internal 4519 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.cc ('k') | src/ast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698