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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 PrintF("%s", name == NULL ? "<unknown>" : name); | 82 PrintF("%s", name == NULL ? "<unknown>" : name); |
83 } else { | 83 } else { |
84 PrintF("%s", *info->function()->debug_name()->ToCString()); | 84 PrintF("%s", *info->function()->debug_name()->ToCString()); |
85 } | 85 } |
86 PrintF("]\n"); | 86 PrintF("]\n"); |
87 } | 87 } |
88 | 88 |
89 #ifdef DEBUG | 89 #ifdef DEBUG |
90 if (!info->IsStub() && print_source) { | 90 if (!info->IsStub() && print_source) { |
91 PrintF("--- Source from AST ---\n%s\n", | 91 PrintF("--- Source from AST ---\n%s\n", |
92 PrettyPrinter().PrintProgram(info->function())); | 92 PrettyPrinter(info->isolate()).PrintProgram(info->function())); |
93 } | 93 } |
94 | 94 |
95 if (!info->IsStub() && print_ast) { | 95 if (!info->IsStub() && print_ast) { |
96 PrintF("--- AST ---\n%s\n", | 96 PrintF("--- AST ---\n%s\n", |
97 AstPrinter().PrintProgram(info->function())); | 97 AstPrinter(info->isolate()).PrintProgram(info->function())); |
98 } | 98 } |
99 #endif // DEBUG | 99 #endif // DEBUG |
100 } | 100 } |
101 | 101 |
102 | 102 |
103 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm, | 103 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm, |
104 Code::Flags flags, | 104 Code::Flags flags, |
105 CompilationInfo* info) { | 105 CompilationInfo* info) { |
106 Isolate* isolate = info->isolate(); | 106 Isolate* isolate = info->isolate(); |
107 | 107 |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 ASSERT(result_size_ == 1 || result_size_ == 2); | 224 ASSERT(result_size_ == 1 || result_size_ == 2); |
225 #ifdef _WIN64 | 225 #ifdef _WIN64 |
226 return result | ((result_size_ == 1) ? 0 : 2); | 226 return result | ((result_size_ == 1) ? 0 : 2); |
227 #else | 227 #else |
228 return result; | 228 return result; |
229 #endif | 229 #endif |
230 } | 230 } |
231 | 231 |
232 | 232 |
233 } } // namespace v8::internal | 233 } } // namespace v8::internal |
OLD | NEW |