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

Side by Side Diff: src/assembler.h

Issue 23515007: ARM: remove the regexp specific literal pool. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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/arm/regexp-macro-assembler-arm.cc ('k') | test/cctest/test-assembler-arm.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 if (distance == kNear) { 189 if (distance == kNear) {
190 near_link_pos_ = pos + 1; 190 near_link_pos_ = pos + 1;
191 ASSERT(is_near_linked()); 191 ASSERT(is_near_linked());
192 } else { 192 } else {
193 pos_ = pos + 1; 193 pos_ = pos + 1;
194 ASSERT(is_linked()); 194 ASSERT(is_linked());
195 } 195 }
196 } 196 }
197 197
198 friend class Assembler; 198 friend class Assembler;
199 friend class RegexpAssembler;
200 friend class Displacement; 199 friend class Displacement;
201 friend class RegExpMacroAssemblerIrregexp; 200 friend class RegExpMacroAssemblerIrregexp;
202 }; 201 };
203 202
204 203
205 enum SaveFPRegsMode { kDontSaveFPRegs, kSaveFPRegs }; 204 enum SaveFPRegsMode { kDontSaveFPRegs, kSaveFPRegs };
206 205
207 206
208 // ----------------------------------------------------------------------------- 207 // -----------------------------------------------------------------------------
209 // Relocation information 208 // Relocation information
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1057 public: 1056 public:
1058 NullCallWrapper() { } 1057 NullCallWrapper() { }
1059 virtual ~NullCallWrapper() { } 1058 virtual ~NullCallWrapper() { }
1060 virtual void BeforeCall(int call_size) const { } 1059 virtual void BeforeCall(int call_size) const { }
1061 virtual void AfterCall() const { } 1060 virtual void AfterCall() const { }
1062 }; 1061 };
1063 1062
1064 } } // namespace v8::internal 1063 } } // namespace v8::internal
1065 1064
1066 #endif // V8_ASSEMBLER_H_ 1065 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm/regexp-macro-assembler-arm.cc ('k') | test/cctest/test-assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698