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

Side by Side Diff: src/ia32/macro-assembler-ia32.h

Issue 9139051: Cosmetic changes ("set up" is a verb, "setup" is a noun). (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 11 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/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/stub-cache-ia32.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 // 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 if (object->IsHeapObject()) { 244 if (object->IsHeapObject()) {
245 LoadHeapObject(result, Handle<HeapObject>::cast(object)); 245 LoadHeapObject(result, Handle<HeapObject>::cast(object));
246 } else { 246 } else {
247 Set(result, Immediate(object)); 247 Set(result, Immediate(object));
248 } 248 }
249 } 249 }
250 250
251 // --------------------------------------------------------------------------- 251 // ---------------------------------------------------------------------------
252 // JavaScript invokes 252 // JavaScript invokes
253 253
254 // Setup call kind marking in ecx. The method takes ecx as an 254 // Set up call kind marking in ecx. The method takes ecx as an
255 // explicit first parameter to make the code more readable at the 255 // explicit first parameter to make the code more readable at the
256 // call sites. 256 // call sites.
257 void SetCallKind(Register dst, CallKind kind); 257 void SetCallKind(Register dst, CallKind kind);
258 258
259 // Invoke the JavaScript function code by either calling or jumping. 259 // Invoke the JavaScript function code by either calling or jumping.
260 void InvokeCode(Register code, 260 void InvokeCode(Register code,
261 const ParameterCount& expected, 261 const ParameterCount& expected,
262 const ParameterCount& actual, 262 const ParameterCount& actual,
263 InvokeFlag flag, 263 InvokeFlag flag,
264 const CallWrapper& call_wrapper, 264 const CallWrapper& call_wrapper,
(...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
949 } \ 949 } \
950 masm-> 950 masm->
951 #else 951 #else
952 #define ACCESS_MASM(masm) masm-> 952 #define ACCESS_MASM(masm) masm->
953 #endif 953 #endif
954 954
955 955
956 } } // namespace v8::internal 956 } } // namespace v8::internal
957 957
958 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 958 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/ia32/lithium-codegen-ia32.cc ('k') | src/ia32/stub-cache-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698