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

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

Issue 8387070: Make non-templatized versions of LIR printing functions. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 1 month 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 | « no previous file | src/hashmap.h » ('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 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(RegExpExec) \ 51 V(RegExpExec) \
52 V(TranscendentalCache) \ 52 V(TranscendentalCache) \
53 V(Instanceof) \ 53 V(Instanceof) \
54 V(ConvertToDouble) \ 54 V(ConvertToDouble) \
55 V(WriteInt32ToHeapNumber) \ 55 V(WriteInt32ToHeapNumber) \
56 V(StackCheck) \ 56 V(StackCheck) \
57 V(FastNewClosure) \ 57 V(FastNewClosure) \
58 V(FastNewContext) \ 58 V(FastNewContext) \
59 V(FastNewBlockContext) \ 59 V(FastNewBlockContext) \
60 V(FastCloneShallowArray) \ 60 V(FastCloneShallowArray) \
61 V(RevertToNumber) \
62 V(ToBoolean) \ 61 V(ToBoolean) \
63 V(ToNumber) \ 62 V(ToNumber) \
64 V(CounterOp) \
65 V(ArgumentsAccess) \ 63 V(ArgumentsAccess) \
66 V(RegExpConstructResult) \ 64 V(RegExpConstructResult) \
67 V(NumberToString) \ 65 V(NumberToString) \
68 V(CEntry) \ 66 V(CEntry) \
69 V(JSEntry) \ 67 V(JSEntry) \
70 V(KeyedLoadElement) \ 68 V(KeyedLoadElement) \
71 V(KeyedStoreElement) \ 69 V(KeyedStoreElement) \
72 V(DebuggerStatement) \ 70 V(DebuggerStatement) \
73 V(StringDictionaryLookup) \ 71 V(StringDictionaryLookup) \
74 V(ElementsTransitionAndStore) \ 72 V(ElementsTransitionAndStore) \
(...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 int MinorKey() { return 0; } 1073 int MinorKey() { return 0; }
1076 1074
1077 void Generate(MacroAssembler* masm); 1075 void Generate(MacroAssembler* masm);
1078 1076
1079 DISALLOW_COPY_AND_ASSIGN(StoreArrayLiteralElementStub); 1077 DISALLOW_COPY_AND_ASSIGN(StoreArrayLiteralElementStub);
1080 }; 1078 };
1081 1079
1082 } } // namespace v8::internal 1080 } } // namespace v8::internal
1083 1081
1084 #endif // V8_CODE_STUBS_H_ 1082 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « no previous file | src/hashmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698