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

Side by Side Diff: src/mips/assembler-mips.h

Issue 11744020: Rename RelocInfo::NONE to RelocInfo::NONE32. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/ic.cc ('k') | src/mips/assembler-mips.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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 354
355 355
356 // ----------------------------------------------------------------------------- 356 // -----------------------------------------------------------------------------
357 // Machine instruction Operands. 357 // Machine instruction Operands.
358 358
359 // Class Operand represents a shifter operand in data processing instructions. 359 // Class Operand represents a shifter operand in data processing instructions.
360 class Operand BASE_EMBEDDED { 360 class Operand BASE_EMBEDDED {
361 public: 361 public:
362 // Immediate. 362 // Immediate.
363 INLINE(explicit Operand(int32_t immediate, 363 INLINE(explicit Operand(int32_t immediate,
364 RelocInfo::Mode rmode = RelocInfo::NONE)); 364 RelocInfo::Mode rmode = RelocInfo::NONE32));
365 INLINE(explicit Operand(const ExternalReference& f)); 365 INLINE(explicit Operand(const ExternalReference& f));
366 INLINE(explicit Operand(const char* s)); 366 INLINE(explicit Operand(const char* s));
367 INLINE(explicit Operand(Object** opp)); 367 INLINE(explicit Operand(Object** opp));
368 INLINE(explicit Operand(Context** cpp)); 368 INLINE(explicit Operand(Context** cpp));
369 explicit Operand(Handle<Object> handle); 369 explicit Operand(Handle<Object> handle);
370 INLINE(explicit Operand(Smi* value)); 370 INLINE(explicit Operand(Smi* value));
371 371
372 // Register. 372 // Register.
373 INLINE(explicit Operand(Register rm)); 373 INLINE(explicit Operand(Register rm));
374 374
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 class EnsureSpace BASE_EMBEDDED { 1277 class EnsureSpace BASE_EMBEDDED {
1278 public: 1278 public:
1279 explicit EnsureSpace(Assembler* assembler) { 1279 explicit EnsureSpace(Assembler* assembler) {
1280 assembler->CheckBuffer(); 1280 assembler->CheckBuffer();
1281 } 1281 }
1282 }; 1282 };
1283 1283
1284 } } // namespace v8::internal 1284 } } // namespace v8::internal
1285 1285
1286 #endif // V8_ARM_ASSEMBLER_MIPS_H_ 1286 #endif // V8_ARM_ASSEMBLER_MIPS_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/mips/assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698