| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 5 #ifndef V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 6 #define V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 | 9 |
| 10 #include "src/handles.h" | 10 #include "src/handles.h" |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 const Operator* ChangeTaggedToFloat64(); | 164 const Operator* ChangeTaggedToFloat64(); |
| 165 const Operator* ChangeInt32ToTagged(); | 165 const Operator* ChangeInt32ToTagged(); |
| 166 const Operator* ChangeUint32ToTagged(); | 166 const Operator* ChangeUint32ToTagged(); |
| 167 const Operator* ChangeFloat64ToTagged(); | 167 const Operator* ChangeFloat64ToTagged(); |
| 168 const Operator* ChangeBoolToBit(); | 168 const Operator* ChangeBoolToBit(); |
| 169 const Operator* ChangeBitToBool(); | 169 const Operator* ChangeBitToBool(); |
| 170 | 170 |
| 171 const Operator* ObjectIsNumber(); | 171 const Operator* ObjectIsNumber(); |
| 172 const Operator* ObjectIsReceiver(); | 172 const Operator* ObjectIsReceiver(); |
| 173 const Operator* ObjectIsSmi(); | 173 const Operator* ObjectIsSmi(); |
| 174 const Operator* ObjectIsString(); |
| 174 const Operator* ObjectIsUndetectable(); | 175 const Operator* ObjectIsUndetectable(); |
| 175 | 176 |
| 176 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); | 177 const Operator* Allocate(PretenureFlag pretenure = NOT_TENURED); |
| 177 | 178 |
| 178 const Operator* LoadField(FieldAccess const&); | 179 const Operator* LoadField(FieldAccess const&); |
| 179 const Operator* StoreField(FieldAccess const&); | 180 const Operator* StoreField(FieldAccess const&); |
| 180 | 181 |
| 181 // load-buffer buffer, offset, length | 182 // load-buffer buffer, offset, length |
| 182 const Operator* LoadBuffer(BufferAccess); | 183 const Operator* LoadBuffer(BufferAccess); |
| 183 | 184 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 197 Zone* const zone_; | 198 Zone* const zone_; |
| 198 | 199 |
| 199 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); | 200 DISALLOW_COPY_AND_ASSIGN(SimplifiedOperatorBuilder); |
| 200 }; | 201 }; |
| 201 | 202 |
| 202 } // namespace compiler | 203 } // namespace compiler |
| 203 } // namespace internal | 204 } // namespace internal |
| 204 } // namespace v8 | 205 } // namespace v8 |
| 205 | 206 |
| 206 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ | 207 #endif // V8_COMPILER_SIMPLIFIED_OPERATOR_H_ |
| OLD | NEW |