| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // ProcessDeclarations | 61 // ProcessDeclarations |
| 62 // DeclareGlobals | 62 // DeclareGlobals |
| 63 // CheckForInlineRuntimeCall | 63 // CheckForInlineRuntimeCall |
| 64 // AnalyzeCondition | 64 // AnalyzeCondition |
| 65 // CodeForFunctionPosition | 65 // CodeForFunctionPosition |
| 66 // CodeForReturnPosition | 66 // CodeForReturnPosition |
| 67 // CodeForStatementPosition | 67 // CodeForStatementPosition |
| 68 // CodeForDoWhileConditionPosition | 68 // CodeForDoWhileConditionPosition |
| 69 // CodeForSourcePosition | 69 // CodeForSourcePosition |
| 70 | 70 |
| 71 enum InitState { CONST_INIT, NOT_CONST_INIT }; |
| 72 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; |
| 71 | 73 |
| 72 #if V8_TARGET_ARCH_IA32 | 74 #if V8_TARGET_ARCH_IA32 |
| 73 #include "ia32/codegen-ia32.h" | 75 #include "ia32/codegen-ia32.h" |
| 74 #elif V8_TARGET_ARCH_X64 | 76 #elif V8_TARGET_ARCH_X64 |
| 75 #include "x64/codegen-x64.h" | 77 #include "x64/codegen-x64.h" |
| 76 #elif V8_TARGET_ARCH_ARM | 78 #elif V8_TARGET_ARCH_ARM |
| 77 #include "arm/codegen-arm.h" | 79 #include "arm/codegen-arm.h" |
| 78 #elif V8_TARGET_ARCH_MIPS | 80 #elif V8_TARGET_ARCH_MIPS |
| 79 #include "mips/codegen-mips.h" | 81 #include "mips/codegen-mips.h" |
| 80 #else | 82 #else |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 #ifdef DEBUG | 236 #ifdef DEBUG |
| 235 const char* comment_; | 237 const char* comment_; |
| 236 #endif | 238 #endif |
| 237 DISALLOW_COPY_AND_ASSIGN(DeferredCode); | 239 DISALLOW_COPY_AND_ASSIGN(DeferredCode); |
| 238 }; | 240 }; |
| 239 | 241 |
| 240 | 242 |
| 241 } } // namespace v8::internal | 243 } } // namespace v8::internal |
| 242 | 244 |
| 243 #endif // V8_CODEGEN_H_ | 245 #endif // V8_CODEGEN_H_ |
| OLD | NEW |