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

Side by Side Diff: src/heap.cc

Issue 6709022: Re-establish mips basic infrastructure. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 9 years, 9 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "runtime-profiler.h" 42 #include "runtime-profiler.h"
43 #include "scanner-base.h" 43 #include "scanner-base.h"
44 #include "scopeinfo.h" 44 #include "scopeinfo.h"
45 #include "snapshot.h" 45 #include "snapshot.h"
46 #include "v8threads.h" 46 #include "v8threads.h"
47 #include "vm-state-inl.h" 47 #include "vm-state-inl.h"
48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP 48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP
49 #include "regexp-macro-assembler.h" 49 #include "regexp-macro-assembler.h"
50 #include "arm/regexp-macro-assembler-arm.h" 50 #include "arm/regexp-macro-assembler-arm.h"
51 #endif 51 #endif
52 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP
53 #include "regexp-macro-assembler.h"
54 #include "mips/regexp-macro-assembler-mips.h"
55 #endif
52 56
53 57
54 namespace v8 { 58 namespace v8 {
55 namespace internal { 59 namespace internal {
56 60
57 61
58 String* Heap::hidden_symbol_; 62 String* Heap::hidden_symbol_;
59 Object* Heap::roots_[Heap::kRootListLength]; 63 Object* Heap::roots_[Heap::kRootListLength];
60 Object* Heap::global_contexts_list_; 64 Object* Heap::global_contexts_list_;
61 65
(...skipping 5511 matching lines...) Expand 10 before | Expand all | Expand 10 after
5573 void ExternalStringTable::TearDown() { 5577 void ExternalStringTable::TearDown() {
5574 new_space_strings_.Free(); 5578 new_space_strings_.Free();
5575 old_space_strings_.Free(); 5579 old_space_strings_.Free();
5576 } 5580 }
5577 5581
5578 5582
5579 List<Object*> ExternalStringTable::new_space_strings_; 5583 List<Object*> ExternalStringTable::new_space_strings_;
5580 List<Object*> ExternalStringTable::old_space_strings_; 5584 List<Object*> ExternalStringTable::old_space_strings_;
5581 5585
5582 } } // namespace v8::internal 5586 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698