| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 PrintF(tracing_scope.file(), "\n\n"); | 158 PrintF(tracing_scope.file(), "\n\n"); |
| 159 } | 159 } |
| 160 } | 160 } |
| 161 if (info->IsOptimizing()) { | 161 if (info->IsOptimizing()) { |
| 162 if (FLAG_print_unopt_code) { | 162 if (FLAG_print_unopt_code) { |
| 163 PrintF(tracing_scope.file(), "--- Unoptimized code ---\n"); | 163 PrintF(tracing_scope.file(), "--- Unoptimized code ---\n"); |
| 164 info->closure()->shared()->code()->Disassemble( | 164 info->closure()->shared()->code()->Disassemble( |
| 165 function->debug_name()->ToCString().get(), tracing_scope.file()); | 165 function->debug_name()->ToCString().get(), tracing_scope.file()); |
| 166 } | 166 } |
| 167 PrintF(tracing_scope.file(), "--- Optimized code ---\n"); | 167 PrintF(tracing_scope.file(), "--- Optimized code ---\n"); |
| 168 PrintF(tracing_scope.file(), |
| 169 "optimization_id = %d\n", info->optimization_id()); |
| 168 } else { | 170 } else { |
| 169 PrintF(tracing_scope.file(), "--- Code ---\n"); | 171 PrintF(tracing_scope.file(), "--- Code ---\n"); |
| 170 } | 172 } |
| 171 if (print_source) { | 173 if (print_source) { |
| 172 PrintF(tracing_scope.file(), | 174 PrintF(tracing_scope.file(), |
| 173 "source_position = %d\n", function->start_position()); | 175 "source_position = %d\n", function->start_position()); |
| 174 } | 176 } |
| 175 if (info->IsStub()) { | 177 if (info->IsStub()) { |
| 176 CodeStub::Major major_key = info->code_stub()->MajorKey(); | 178 CodeStub::Major major_key = info->code_stub()->MajorKey(); |
| 177 code->Disassemble(CodeStub::MajorName(major_key, false), | 179 code->Disassemble(CodeStub::MajorName(major_key, false), |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 ASSERT(result_size_ == 1 || result_size_ == 2); | 240 ASSERT(result_size_ == 1 || result_size_ == 2); |
| 239 #ifdef _WIN64 | 241 #ifdef _WIN64 |
| 240 return result | ((result_size_ == 1) ? 0 : 2); | 242 return result | ((result_size_ == 1) ? 0 : 2); |
| 241 #else | 243 #else |
| 242 return result; | 244 return result; |
| 243 #endif | 245 #endif |
| 244 } | 246 } |
| 245 | 247 |
| 246 | 248 |
| 247 } } // namespace v8::internal | 249 } } // namespace v8::internal |
| OLD | NEW |