| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 return LanguageModeField::decode(flags_); | 72 return LanguageModeField::decode(flags_); |
| 73 } | 73 } |
| 74 bool is_in_loop() const { return IsInLoop::decode(flags_); } | 74 bool is_in_loop() const { return IsInLoop::decode(flags_); } |
| 75 FunctionLiteral* function() const { return function_; } | 75 FunctionLiteral* function() const { return function_; } |
| 76 Scope* scope() const { return scope_; } | 76 Scope* scope() const { return scope_; } |
| 77 Scope* global_scope() const { return global_scope_; } | 77 Scope* global_scope() const { return global_scope_; } |
| 78 Handle<Code> code() const { return code_; } | 78 Handle<Code> code() const { return code_; } |
| 79 Handle<JSFunction> closure() const { return closure_; } | 79 Handle<JSFunction> closure() const { return closure_; } |
| 80 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } | 80 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; } |
| 81 Handle<Script> script() const { return script_; } | 81 Handle<Script> script() const { return script_; } |
| 82 HydrogenCodeStub* code_stub() {return code_stub_; } | 82 HydrogenCodeStub* code_stub() const {return code_stub_; } |
| 83 v8::Extension* extension() const { return extension_; } | 83 v8::Extension* extension() const { return extension_; } |
| 84 ScriptDataImpl* pre_parse_data() const { return pre_parse_data_; } | 84 ScriptDataImpl* pre_parse_data() const { return pre_parse_data_; } |
| 85 Handle<Context> context() const { return context_; } | 85 Handle<Context> context() const { return context_; } |
| 86 BailoutId osr_ast_id() const { return osr_ast_id_; } | 86 BailoutId osr_ast_id() const { return osr_ast_id_; } |
| 87 int opt_count() const { return opt_count_; } | 87 int opt_count() const { return opt_count_; } |
| 88 int num_parameters() const; | 88 int num_parameters() const; |
| 89 int num_heap_slots() const; | 89 int num_heap_slots() const; |
| 90 Code::Flags flags() const; | 90 Code::Flags flags() const; |
| 91 | 91 |
| 92 void MarkAsEval() { | 92 void MarkAsEval() { |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 | 544 |
| 545 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, | 545 static void RecordFunctionCompilation(Logger::LogEventsAndTags tag, |
| 546 CompilationInfo* info, | 546 CompilationInfo* info, |
| 547 Handle<SharedFunctionInfo> shared); | 547 Handle<SharedFunctionInfo> shared); |
| 548 }; | 548 }; |
| 549 | 549 |
| 550 | 550 |
| 551 } } // namespace v8::internal | 551 } } // namespace v8::internal |
| 552 | 552 |
| 553 #endif // V8_COMPILER_H_ | 553 #endif // V8_COMPILER_H_ |
| OLD | NEW |