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

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

Issue 40153003: AllocationProfiler: Inital version of RecordObjectAllocation for hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips, ia32 and arm platforms were added Created 7 years, 2 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
« no previous file with comments | « src/assembler.cc ('k') | src/heap-profiler.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 V(DebuggerStatement) \ 86 V(DebuggerStatement) \
87 V(NameDictionaryLookup) \ 87 V(NameDictionaryLookup) \
88 V(ElementsTransitionAndStore) \ 88 V(ElementsTransitionAndStore) \
89 V(TransitionElementsKind) \ 89 V(TransitionElementsKind) \
90 V(StoreArrayLiteralElement) \ 90 V(StoreArrayLiteralElement) \
91 V(StubFailureTrampoline) \ 91 V(StubFailureTrampoline) \
92 V(ArrayConstructor) \ 92 V(ArrayConstructor) \
93 V(InternalArrayConstructor) \ 93 V(InternalArrayConstructor) \
94 V(ProfileEntryHook) \ 94 V(ProfileEntryHook) \
95 V(StoreGlobal) \ 95 V(StoreGlobal) \
96 V(CallExternal) \
96 /* IC Handler stubs */ \ 97 /* IC Handler stubs */ \
97 V(LoadField) \ 98 V(LoadField) \
98 V(KeyedLoadField) 99 V(KeyedLoadField)
99 100
100 // List of code stubs only used on ARM platforms. 101 // List of code stubs only used on ARM platforms.
101 #if V8_TARGET_ARCH_ARM 102 #if V8_TARGET_ARCH_ARM
102 #define CODE_STUB_LIST_ARM(V) \ 103 #define CODE_STUB_LIST_ARM(V) \
103 V(GetProperty) \ 104 V(GetProperty) \
104 V(SetProperty) \ 105 V(SetProperty) \
105 V(InvokeBuiltin) \ 106 V(InvokeBuiltin) \
(...skipping 2251 matching lines...) Expand 10 before | Expand all | Expand 10 after
2357 int MinorKey() { return 0; } 2358 int MinorKey() { return 0; }
2358 2359
2359 void Generate(MacroAssembler* masm); 2360 void Generate(MacroAssembler* masm);
2360 2361
2361 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2362 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2362 }; 2363 };
2363 2364
2364 } } // namespace v8::internal 2365 } } // namespace v8::internal
2365 2366
2366 #endif // V8_CODE_STUBS_H_ 2367 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/heap-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698