| OLD | NEW |
| 1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 #include "v8.h" | 28 #include "v8.h" |
| 29 | 29 |
| 30 #include "bootstrapper.h" | 30 #include "bootstrapper.h" |
| 31 #include "codegen-inl.h" | 31 #include "codegen-inl.h" |
| 32 #include "compilation-cache.h" | 32 #include "compilation-cache.h" |
| 33 #include "compiler.h" | 33 #include "compiler.h" |
| 34 #include "data-flow.h" | 34 #include "data-flow.h" |
| 35 #include "debug.h" | 35 #include "debug.h" |
| 36 #include "fast-codegen.h" | 36 #include "fast-codegen.h" |
| 37 #include "flow-graph.h" |
| 37 #include "full-codegen.h" | 38 #include "full-codegen.h" |
| 38 #include "liveedit.h" | 39 #include "liveedit.h" |
| 39 #include "oprofile-agent.h" | 40 #include "oprofile-agent.h" |
| 40 #include "rewriter.h" | 41 #include "rewriter.h" |
| 41 #include "scopes.h" | 42 #include "scopes.h" |
| 42 | 43 |
| 43 namespace v8 { | 44 namespace v8 { |
| 44 namespace internal { | 45 namespace internal { |
| 45 | 46 |
| 46 | 47 |
| (...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 653 LOG(CodeCreateEvent(tag, *code, *func_name)); | 654 LOG(CodeCreateEvent(tag, *code, *func_name)); |
| 654 OProfileAgent::CreateNativeCodeRegion(*func_name, | 655 OProfileAgent::CreateNativeCodeRegion(*func_name, |
| 655 code->instruction_start(), | 656 code->instruction_start(), |
| 656 code->instruction_size()); | 657 code->instruction_size()); |
| 657 } | 658 } |
| 658 } | 659 } |
| 659 } | 660 } |
| 660 #endif | 661 #endif |
| 661 | 662 |
| 662 } } // namespace v8::internal | 663 } } // namespace v8::internal |
| OLD | NEW |