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

Side by Side Diff: src/runtime/runtime.h

Issue 933913002: Fix representation for CompareIC in JSGenericLowering. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Smash bounds and workaround. Created 5 years, 10 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
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/runtime/runtime-object.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 // 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 F(NotifyContextDisposed, 0, 1) \ 91 F(NotifyContextDisposed, 0, 1) \
92 \ 92 \
93 /* Array join support */ \ 93 /* Array join support */ \
94 F(PushIfAbsent, 2, 1) \ 94 F(PushIfAbsent, 2, 1) \
95 F(ArrayConcat, 1, 1) \ 95 F(ArrayConcat, 1, 1) \
96 \ 96 \
97 /* Conversions */ \ 97 /* Conversions */ \
98 F(ToBool, 1, 1) \ 98 F(ToBool, 1, 1) \
99 F(Typeof, 1, 1) \ 99 F(Typeof, 1, 1) \
100 \ 100 \
101 F(Booleanize, 2, 1) /* TODO(turbofan): Only temporary */ \
102 \
103 F(StringToNumber, 1, 1) \ 101 F(StringToNumber, 1, 1) \
104 F(StringParseInt, 2, 1) \ 102 F(StringParseInt, 2, 1) \
105 F(StringParseFloat, 1, 1) \ 103 F(StringParseFloat, 1, 1) \
106 F(StringToLowerCase, 1, 1) \ 104 F(StringToLowerCase, 1, 1) \
107 F(StringToUpperCase, 1, 1) \ 105 F(StringToUpperCase, 1, 1) \
108 F(StringSplit, 3, 1) \ 106 F(StringSplit, 3, 1) \
109 F(CharFromCode, 1, 1) \ 107 F(CharFromCode, 1, 1) \
110 F(URIEscape, 1, 1) \ 108 F(URIEscape, 1, 1) \
111 F(URIUnescape, 1, 1) \ 109 F(URIUnescape, 1, 1) \
112 \ 110 \
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 897
900 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 898 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
901 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 899 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
902 STATIC_ASSERT(LANGUAGE_END == 3); 900 STATIC_ASSERT(LANGUAGE_END == 3);
903 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 901 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
904 902
905 } // namespace internal 903 } // namespace internal
906 } // namespace v8 904 } // namespace v8
907 905
908 #endif // V8_RUNTIME_RUNTIME_H_ 906 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/compiler/linkage.cc ('k') | src/runtime/runtime-object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698