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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // CodeForStatementPosition | 66 // CodeForStatementPosition |
67 // CodeForDoWhileConditionPosition | 67 // CodeForDoWhileConditionPosition |
68 // CodeForSourcePosition | 68 // CodeForSourcePosition |
69 | 69 |
70 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; | 70 enum TypeofState { INSIDE_TYPEOF, NOT_INSIDE_TYPEOF }; |
71 | 71 |
72 #if V8_TARGET_ARCH_IA32 | 72 #if V8_TARGET_ARCH_IA32 |
73 #include "ia32/codegen-ia32.h" | 73 #include "ia32/codegen-ia32.h" |
74 #elif V8_TARGET_ARCH_X64 | 74 #elif V8_TARGET_ARCH_X64 |
75 #include "x64/codegen-x64.h" | 75 #include "x64/codegen-x64.h" |
| 76 #elif V8_TARGET_ARCH_X32 |
| 77 #include "x32/codegen-x32.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 |
81 #error Unsupported target architecture. | 83 #error Unsupported target architecture. |
82 #endif | 84 #endif |
83 | 85 |
84 namespace v8 { | 86 namespace v8 { |
85 namespace internal { | 87 namespace internal { |
(...skipping 23 matching lines...) Expand all Loading... |
109 Label* fail); | 111 Label* fail); |
110 | 112 |
111 private: | 113 private: |
112 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); | 114 DISALLOW_COPY_AND_ASSIGN(ElementsTransitionGenerator); |
113 }; | 115 }; |
114 | 116 |
115 | 117 |
116 } } // namespace v8::internal | 118 } } // namespace v8::internal |
117 | 119 |
118 #endif // V8_CODEGEN_H_ | 120 #endif // V8_CODEGEN_H_ |
OLD | NEW |