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 106 matching lines...) Loading... |
117 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ | 117 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ |
118 Code::kNoExtraICState) \ | 118 Code::kNoExtraICState) \ |
119 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ | 119 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ |
120 Code::kNoExtraICState) \ | 120 Code::kNoExtraICState) \ |
121 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ | 121 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ |
122 Code::kNoExtraICState) \ | 122 Code::kNoExtraICState) \ |
123 V(KeyedLoadIC_Slow, BUILTIN, UNINITIALIZED, \ | 123 V(KeyedLoadIC_Slow, BUILTIN, UNINITIALIZED, \ |
124 Code::kNoExtraICState) \ | 124 Code::kNoExtraICState) \ |
125 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ | 125 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ |
126 Code::kNoExtraICState) \ | 126 Code::kNoExtraICState) \ |
| 127 V(StoreIC_Slow, BUILTIN, UNINITIALIZED, \ |
| 128 Code::kNoExtraICState) \ |
127 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ | 129 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ |
128 Code::kNoExtraICState) \ | 130 Code::kNoExtraICState) \ |
129 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ | 131 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ |
130 Code::kNoExtraICState) \ | 132 Code::kNoExtraICState) \ |
131 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ | 133 V(KeyedStoreIC_Slow, BUILTIN, UNINITIALIZED, \ |
132 Code::kNoExtraICState) \ | 134 Code::kNoExtraICState) \ |
133 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ | 135 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ |
134 Code::kNoExtraICState) \ | 136 Code::kNoExtraICState) \ |
135 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ | 137 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ |
136 Code::kNoExtraICState) \ | 138 Code::kNoExtraICState) \ |
(...skipping 270 matching lines...) Loading... |
407 | 409 |
408 friend class BuiltinFunctionTable; | 410 friend class BuiltinFunctionTable; |
409 friend class Isolate; | 411 friend class Isolate; |
410 | 412 |
411 DISALLOW_COPY_AND_ASSIGN(Builtins); | 413 DISALLOW_COPY_AND_ASSIGN(Builtins); |
412 }; | 414 }; |
413 | 415 |
414 } } // namespace v8::internal | 416 } } // namespace v8::internal |
415 | 417 |
416 #endif // V8_BUILTINS_H_ | 418 #endif // V8_BUILTINS_H_ |
OLD | NEW |