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

Side by Side Diff: src/hydrogen-instructions.cc

Issue 1108313003: Add HArrayBufferNotNeutered instruction (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years, 7 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/base/bits.h" 7 #include "src/base/bits.h"
8 #include "src/double.h" 8 #include "src/double.h"
9 #include "src/factory.h" 9 #include "src/factory.h"
10 #include "src/hydrogen-infer-representation.h" 10 #include "src/hydrogen-infer-representation.h"
(...skipping 836 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 case HValue::kAdd: 847 case HValue::kAdd:
848 case HValue::kAllocateBlockContext: 848 case HValue::kAllocateBlockContext:
849 case HValue::kApplyArguments: 849 case HValue::kApplyArguments:
850 case HValue::kBitwise: 850 case HValue::kBitwise:
851 case HValue::kBoundsCheck: 851 case HValue::kBoundsCheck:
852 case HValue::kBranch: 852 case HValue::kBranch:
853 case HValue::kCallJSFunction: 853 case HValue::kCallJSFunction:
854 case HValue::kCallRuntime: 854 case HValue::kCallRuntime:
855 case HValue::kCallWithDescriptor: 855 case HValue::kCallWithDescriptor:
856 case HValue::kChange: 856 case HValue::kChange:
857 case HValue::kCheckArrayBufferNotNeutered:
857 case HValue::kCheckHeapObject: 858 case HValue::kCheckHeapObject:
858 case HValue::kCheckInstanceType: 859 case HValue::kCheckInstanceType:
859 case HValue::kCheckMapValue: 860 case HValue::kCheckMapValue:
860 case HValue::kCheckMaps: 861 case HValue::kCheckMaps:
861 case HValue::kCheckSmi: 862 case HValue::kCheckSmi:
862 case HValue::kCheckValue: 863 case HValue::kCheckValue:
863 case HValue::kClampToUint8: 864 case HValue::kClampToUint8:
864 case HValue::kDateField: 865 case HValue::kDateField:
865 case HValue::kDeoptimize: 866 case HValue::kDeoptimize:
866 case HValue::kDiv: 867 case HValue::kDiv:
(...skipping 3843 matching lines...) Expand 10 before | Expand all | Expand 10 after
4710 break; 4711 break;
4711 case HObjectAccess::kExternalMemory: 4712 case HObjectAccess::kExternalMemory:
4712 os << "[external-memory]"; 4713 os << "[external-memory]";
4713 break; 4714 break;
4714 } 4715 }
4715 4716
4716 return os << "@" << access.offset(); 4717 return os << "@" << access.offset();
4717 } 4718 }
4718 4719
4719 } } // namespace v8::internal 4720 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698