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

Side by Side Diff: src/code-stubs.h

Issue 6879081: Added type recording for unary minus and unary bitwise negation. Note that the (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Incorporated Florian's suggested changes Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 19 matching lines...) Expand all
30 30
31 #include "globals.h" 31 #include "globals.h"
32 32
33 namespace v8 { 33 namespace v8 {
34 namespace internal { 34 namespace internal {
35 35
36 // List of code stubs used on all platforms. The order in this list is important 36 // List of code stubs used on all platforms. The order in this list is important
37 // as only the stubs up to and including Instanceof allows nested stub calls. 37 // as only the stubs up to and including Instanceof allows nested stub calls.
38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \ 38 #define CODE_STUB_LIST_ALL_PLATFORMS(V) \
39 V(CallFunction) \ 39 V(CallFunction) \
40 V(TypeRecordingUnaryOp) \
40 V(TypeRecordingBinaryOp) \ 41 V(TypeRecordingBinaryOp) \
41 V(StringAdd) \ 42 V(StringAdd) \
42 V(SubString) \ 43 V(SubString) \
43 V(StringCompare) \ 44 V(StringCompare) \
44 V(SmiOp) \ 45 V(SmiOp) \
45 V(Compare) \ 46 V(Compare) \
46 V(CompareIC) \ 47 V(CompareIC) \
47 V(MathPow) \ 48 V(MathPow) \
48 V(TranscendentalCache) \ 49 V(TranscendentalCache) \
49 V(Instanceof) \ 50 V(Instanceof) \
(...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 private: 961 private:
961 MacroAssembler* masm_; 962 MacroAssembler* masm_;
962 bool previous_allow_; 963 bool previous_allow_;
963 964
964 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); 965 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope);
965 }; 966 };
966 967
967 } } // namespace v8::internal 968 } } // namespace v8::internal
968 969
969 #endif // V8_CODE_STUBS_H_ 970 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/ast.h ('k') | src/full-codegen.h » ('j') | src/ia32/full-codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698