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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1344 HValue* capacity); | 1344 HValue* capacity); |
1345 | 1345 |
1346 HValue* BuildCloneShallowArray(HContext* context, | 1346 HValue* BuildCloneShallowArray(HContext* context, |
1347 HValue* boilerplate, | 1347 HValue* boilerplate, |
1348 AllocationSiteMode mode, | 1348 AllocationSiteMode mode, |
1349 ElementsKind kind, | 1349 ElementsKind kind, |
1350 int length); | 1350 int length); |
1351 | 1351 |
1352 void BuildCompareNil( | 1352 void BuildCompareNil( |
1353 HValue* value, | 1353 HValue* value, |
1354 EqualityKind kind, | |
1355 CompareNilICStub::Types types, | 1354 CompareNilICStub::Types types, |
1356 Handle<Map> map, | 1355 Handle<Map> map, |
1357 int position, | 1356 int position, |
1358 HIfContinuation* continuation); | 1357 HIfContinuation* continuation); |
1359 | 1358 |
1360 HValue* BuildCreateAllocationSiteInfo(HValue* previous_object, | 1359 HValue* BuildCreateAllocationSiteInfo(HValue* previous_object, |
1361 int previous_object_size, | 1360 int previous_object_size, |
1362 HValue* payload); | 1361 HValue* payload); |
1363 | 1362 |
1364 HInstruction* BuildGetNativeContext(HValue* context); | 1363 HInstruction* BuildGetNativeContext(HValue* context); |
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2022 EmbeddedVector<char, 64> filename_; | 2021 EmbeddedVector<char, 64> filename_; |
2023 HeapStringAllocator string_allocator_; | 2022 HeapStringAllocator string_allocator_; |
2024 StringStream trace_; | 2023 StringStream trace_; |
2025 int indent_; | 2024 int indent_; |
2026 }; | 2025 }; |
2027 | 2026 |
2028 | 2027 |
2029 } } // namespace v8::internal | 2028 } } // namespace v8::internal |
2030 | 2029 |
2031 #endif // V8_HYDROGEN_H_ | 2030 #endif // V8_HYDROGEN_H_ |
OLD | NEW |