Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: src/hydrogen.h

Issue 16732002: remove equality kind from compare nil ic (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after
1346 HValue* capacity); 1346 HValue* capacity);
1347 1347
1348 HValue* BuildCloneShallowArray(HContext* context, 1348 HValue* BuildCloneShallowArray(HContext* context,
1349 HValue* boilerplate, 1349 HValue* boilerplate,
1350 AllocationSiteMode mode, 1350 AllocationSiteMode mode,
1351 ElementsKind kind, 1351 ElementsKind kind,
1352 int length); 1352 int length);
1353 1353
1354 void BuildCompareNil( 1354 void BuildCompareNil(
1355 HValue* value, 1355 HValue* value,
1356 EqualityKind kind,
1357 CompareNilICStub::Types types, 1356 CompareNilICStub::Types types,
1358 Handle<Map> map, 1357 Handle<Map> map,
1359 int position, 1358 int position,
1360 HIfContinuation* continuation); 1359 HIfContinuation* continuation);
1361 1360
1362 HValue* BuildCreateAllocationSiteInfo(HValue* previous_object, 1361 HValue* BuildCreateAllocationSiteInfo(HValue* previous_object,
1363 int previous_object_size, 1362 int previous_object_size,
1364 HValue* payload); 1363 HValue* payload);
1365 1364
1366 HInstruction* BuildGetNativeContext(HValue* context); 1365 HInstruction* BuildGetNativeContext(HValue* context);
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
2024 EmbeddedVector<char, 64> filename_; 2023 EmbeddedVector<char, 64> filename_;
2025 HeapStringAllocator string_allocator_; 2024 HeapStringAllocator string_allocator_;
2026 StringStream trace_; 2025 StringStream trace_;
2027 int indent_; 2026 int indent_;
2028 }; 2027 };
2029 2028
2030 2029
2031 } } // namespace v8::internal 2030 } } // namespace v8::internal
2032 2031
2033 #endif // V8_HYDROGEN_H_ 2032 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698