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

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

Issue 10832342: Rename "global context" to "native context", (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 void LeaveExitFrame(bool save_doubles); 232 void LeaveExitFrame(bool save_doubles);
233 233
234 // Leave the current exit frame. Expects the return value in 234 // Leave the current exit frame. Expects the return value in
235 // register eax (untouched). 235 // register eax (untouched).
236 void LeaveApiExitFrame(); 236 void LeaveApiExitFrame();
237 237
238 // Find the function context up the context chain. 238 // Find the function context up the context chain.
239 void LoadContext(Register dst, int context_chain_length); 239 void LoadContext(Register dst, int context_chain_length);
240 240
241 // Conditionally load the cached Array transitioned map of type 241 // Conditionally load the cached Array transitioned map of type
242 // transitioned_kind from the global context if the map in register 242 // transitioned_kind from the native context if the map in register
243 // map_in_out is the cached Array map in the global context of 243 // map_in_out is the cached Array map in the native context of
244 // expected_kind. 244 // expected_kind.
245 void LoadTransitionedArrayMapConditional( 245 void LoadTransitionedArrayMapConditional(
246 ElementsKind expected_kind, 246 ElementsKind expected_kind,
247 ElementsKind transitioned_kind, 247 ElementsKind transitioned_kind,
248 Register map_in_out, 248 Register map_in_out,
249 Register scratch, 249 Register scratch,
250 Label* no_map_match); 250 Label* no_map_match);
251 251
252 // Load the initial map for new Arrays from a JSFunction. 252 // Load the initial map for new Arrays from a JSFunction.
253 void LoadInitialArrayMap(Register function_in, 253 void LoadInitialArrayMap(Register function_in,
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 } \ 987 } \
988 masm-> 988 masm->
989 #else 989 #else
990 #define ACCESS_MASM(masm) masm-> 990 #define ACCESS_MASM(masm) masm->
991 #endif 991 #endif
992 992
993 993
994 } } // namespace v8::internal 994 } } // namespace v8::internal
995 995
996 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_ 996 #endif // V8_IA32_MACRO_ASSEMBLER_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698