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

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

Issue 6932010: Unroll more StringDictionary lookup probes both for positive and negative dictionary lookups. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ported to arm&x64, cleaned up ia32 impl 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 V(RevertToNumber) \ 58 V(RevertToNumber) \
59 V(ToBoolean) \ 59 V(ToBoolean) \
60 V(ToNumber) \ 60 V(ToNumber) \
61 V(CounterOp) \ 61 V(CounterOp) \
62 V(ArgumentsAccess) \ 62 V(ArgumentsAccess) \
63 V(RegExpExec) \ 63 V(RegExpExec) \
64 V(RegExpConstructResult) \ 64 V(RegExpConstructResult) \
65 V(NumberToString) \ 65 V(NumberToString) \
66 V(CEntry) \ 66 V(CEntry) \
67 V(JSEntry) \ 67 V(JSEntry) \
68 V(DebuggerStatement) 68 V(DebuggerStatement) \
69 V(StringDictionaryNegativeLookup)
69 70
70 // List of code stubs only used on ARM platforms. 71 // List of code stubs only used on ARM platforms.
71 #ifdef V8_TARGET_ARCH_ARM 72 #ifdef V8_TARGET_ARCH_ARM
72 #define CODE_STUB_LIST_ARM(V) \ 73 #define CODE_STUB_LIST_ARM(V) \
73 V(GetProperty) \ 74 V(GetProperty) \
74 V(SetProperty) \ 75 V(SetProperty) \
75 V(InvokeBuiltin) \ 76 V(InvokeBuiltin) \
76 V(RegExpCEntry) \ 77 V(RegExpCEntry) \
77 V(DirectCEntry) 78 V(DirectCEntry)
78 #else 79 #else
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
913 private: 914 private:
914 MacroAssembler* masm_; 915 MacroAssembler* masm_;
915 bool previous_allow_; 916 bool previous_allow_;
916 917
917 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope); 918 DISALLOW_COPY_AND_ASSIGN(AllowStubCallsScope);
918 }; 919 };
919 920
920 } } // namespace v8::internal 921 } } // namespace v8::internal
921 922
922 #endif // V8_CODE_STUBS_H_ 923 #endif // V8_CODE_STUBS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698