| OLD | NEW |
| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 class CompilationInfo BASE_EMBEDDED { | 42 class CompilationInfo BASE_EMBEDDED { |
| 43 public: | 43 public: |
| 44 explicit CompilationInfo(Handle<Script> script); | 44 explicit CompilationInfo(Handle<Script> script); |
| 45 explicit CompilationInfo(Handle<SharedFunctionInfo> shared_info); | 45 explicit CompilationInfo(Handle<SharedFunctionInfo> shared_info); |
| 46 explicit CompilationInfo(Handle<JSFunction> closure); | 46 explicit CompilationInfo(Handle<JSFunction> closure); |
| 47 | 47 |
| 48 Isolate* isolate() { | 48 Isolate* isolate() { |
| 49 ASSERT(Isolate::Current() == isolate_); | 49 ASSERT(Isolate::Current() == isolate_); |
| 50 return isolate_; | 50 return isolate_; |
| 51 } | 51 } |
| 52 Zone* zone() { return isolate()->zone(); } |
| 53 |
| 52 bool is_lazy() const { return (flags_ & IsLazy::mask()) != 0; } | 54 bool is_lazy() const { return (flags_ & IsLazy::mask()) != 0; } |
| 53 bool is_eval() const { return (flags_ & IsEval::mask()) != 0; } | 55 bool is_eval() const { return (flags_ & IsEval::mask()) != 0; } |
| 54 bool is_global() const { return (flags_ & IsGlobal::mask()) != 0; } | 56 bool is_global() const { return (flags_ & IsGlobal::mask()) != 0; } |
| 55 bool is_strict_mode() const { return (flags_ & IsStrictMode::mask()) != 0; } | 57 bool is_strict_mode() const { return (flags_ & IsStrictMode::mask()) != 0; } |
| 56 bool is_in_loop() const { return (flags_ & IsInLoop::mask()) != 0; } | 58 bool is_in_loop() const { return (flags_ & IsInLoop::mask()) != 0; } |
| 57 FunctionLiteral* function() const { return function_; } | 59 FunctionLiteral* function() const { return function_; } |
| 58 Scope* scope() const { return scope_; } | 60 Scope* scope() const { return scope_; } |
| 59 Handle<Code> code() const { return code_; } | 61 Handle<Code> code() const { return code_; } |
| 60 Handle<JSFunction> closure() const { return closure_; } | 62 Handle<JSFunction> closure() const { return closure_; } |
| 61 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } | 63 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 | 297 |
| 296 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, | 298 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, |
| 297 CompilationInfo* info, | 299 CompilationInfo* info, |
| 298 Handle<SharedFunctionInfo> shared); | 300 Handle<SharedFunctionInfo> shared); |
| 299 }; | 301 }; |
| 300 | 302 |
| 301 | 303 |
| 302 } } // namespace v8::internal | 304 } } // namespace v8::internal |
| 303 | 305 |
| 304 #endif // V8_COMPILER_H_ | 306 #endif // V8_COMPILER_H_ |
| OLD | NEW |