| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 EnableDeoptimizationSupport(); | 132 EnableDeoptimizationSupport(); |
| 133 } else { | 133 } else { |
| 134 mode_ = CompilationInfo::NONOPT; | 134 mode_ = CompilationInfo::NONOPT; |
| 135 } | 135 } |
| 136 } | 136 } |
| 137 bool IsCompilingForDebugging() { | 137 bool IsCompilingForDebugging() { |
| 138 return IsCompilingForDebugging::decode(flags_); | 138 return IsCompilingForDebugging::decode(flags_); |
| 139 } | 139 } |
| 140 | 140 |
| 141 bool has_global_object() const { | 141 bool has_global_object() const { |
| 142 return !closure().is_null() && | 142 return !closure().is_null() && (closure()->context()->global() != NULL); |
| 143 (closure()->context()->global_object() != NULL); | |
| 144 } | 143 } |
| 145 | 144 |
| 146 GlobalObject* global_object() const { | 145 GlobalObject* global_object() const { |
| 147 return has_global_object() ? closure()->context()->global_object() : NULL; | 146 return has_global_object() ? closure()->context()->global() : NULL; |
| 148 } | 147 } |
| 149 | 148 |
| 150 // Accessors for the different compilation modes. | 149 // Accessors for the different compilation modes. |
| 151 bool IsOptimizing() const { return mode_ == OPTIMIZE; } | 150 bool IsOptimizing() const { return mode_ == OPTIMIZE; } |
| 152 bool IsOptimizable() const { return mode_ == BASE; } | 151 bool IsOptimizable() const { return mode_ == BASE; } |
| 153 void SetOptimizing(BailoutId osr_ast_id) { | 152 void SetOptimizing(BailoutId osr_ast_id) { |
| 154 SetMode(OPTIMIZE); | 153 SetMode(OPTIMIZE); |
| 155 osr_ast_id_ = osr_ast_id; | 154 osr_ast_id_ = osr_ast_id; |
| 156 } | 155 } |
| 157 void DisableOptimization(); | 156 void DisableOptimization(); |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 | 461 |
| 463 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, | 462 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, |
| 464 CompilationInfo* info, | 463 CompilationInfo* info, |
| 465 Handle<SharedFunctionInfo> shared); | 464 Handle<SharedFunctionInfo> shared); |
| 466 }; | 465 }; |
| 467 | 466 |
| 468 | 467 |
| 469 } } // namespace v8::internal | 468 } } // namespace v8::internal |
| 470 | 469 |
| 471 #endif // V8_COMPILER_H_ | 470 #endif // V8_COMPILER_H_ |
| OLD | NEW |