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