v8/src/arm
rossberg@chromium.org 42552808ab Rename "global context" to "native context",
in anticipation of the upcoming lexical global scope.

Mostly automatised as:

for FILE in `egrep -ril "global[ _]?context" src test/cctest`
do
  echo $FILE
  sed "s/Global context/Native context/g" <$FILE >$FILE.0
  sed "s/global context/native context/g" <$FILE.0 >$FILE.1
  sed "s/global_context/native_context/g" <$FILE.1 >$FILE.2
  sed "s/GLOBAL_CONTEXT/NATIVE_CONTEXT/g" <$FILE.2 >$FILE.3
  sed "s/GlobalContext/NativeContext/g" <$FILE.3 >$FILE
  rm $FILE.[0-9]
done

R=mstarzinger@chromium.org
BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10832342

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12325 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
2012-08-17 09:03:08 +00:00
..
assembler-arm-inl.h Fix deserializer to understand direct pointers from code to cell payloads. 2012-07-31 09:25:23 +00:00
assembler-arm.cc Fix the full compiler on ARM to always generate the same code 2012-08-10 12:24:06 +00:00
assembler-arm.h Fix the full compiler on ARM to always generate the same code 2012-08-10 12:24:06 +00:00
builtins-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
code-stubs-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
code-stubs-arm.h Relax requirement from VFP3 to VFP2 where possible. 2012-07-25 15:26:16 +00:00
codegen-arm.cc Relax requirement from VFP3 to VFP2 where possible. 2012-07-25 15:26:16 +00:00
codegen-arm.h Porting r10023 and r10054 to arm (pointer cache for external strings). 2011-11-24 11:07:39 +00:00
constants-arm.cc ARM: Merging constants in simulator and assembler header files and other cleanup. 2011-01-26 08:32:54 +00:00
constants-arm.h Fix compilation for ARMv5TEJ 2012-07-19 09:49:12 +00:00
cpu-arm.cc Cosmetic changes ("set up" is a verb, "setup" is a noun). 2012-01-13 13:09:52 +00:00
debug-arm.cc Fix issue 825 (LiveEdit vs. function with no locals) in core and for ia32. 2012-05-03 17:31:34 +00:00
deoptimizer-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
disasm-arm.cc Fix disasm assertions for undefined instructions. 2012-01-25 12:43:32 +00:00
frames-arm.cc Change ARM exit frame layout and alingment handling 2011-01-25 07:49:39 +00:00
frames-arm.h Support inlining at call-sites with mismatched number of arguments. 2012-01-24 08:43:12 +00:00
full-codegen-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
ic-arm.cc Separate stub types from property types. 2012-06-25 11:35:23 +00:00
lithium-arm.cc Inline simple setter calls. 2012-08-10 09:05:42 +00:00
lithium-arm.h Refactor Math.min/max to be a single HInstruction. 2012-08-06 14:28:27 +00:00
lithium-codegen-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
lithium-codegen-arm.h Optimize Smi keys for KeyedLoads 2012-07-20 11:00:33 +00:00
lithium-gap-resolver-arm.cc Remove TLS access for current Zone. 2012-06-11 12:42:31 +00:00
lithium-gap-resolver-arm.h Fix presubmit errors caused by updated depot tools 2011-09-08 19:57:14 +00:00
macro-assembler-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
macro-assembler-arm.h Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00
regexp-macro-assembler-arm.cc Remove TLS access for current Zone. 2012-06-11 12:42:31 +00:00
regexp-macro-assembler-arm.h Unbreak interpreted regexp. 2012-06-14 17:06:16 +00:00
simulator-arm.cc Refactor Math.min/max to be a single HInstruction. 2012-08-06 14:28:27 +00:00
simulator-arm.h Refactor Math.min/max to be a single HInstruction. 2012-08-06 14:28:27 +00:00
stub-cache-arm.cc Rename "global context" to "native context", 2012-08-17 09:03:08 +00:00