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

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

Issue 4247004: Change the utils WhichPowerOf2 function to use a simpler algorithm. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 1 month 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 | « no previous file | src/arm/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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
441 441
442 // rm <shift_op> rs 442 // rm <shift_op> rs
443 explicit Operand(Register rm, ShiftOp shift_op, Register rs); 443 explicit Operand(Register rm, ShiftOp shift_op, Register rs);
444 444
445 // Return true if this is a register operand. 445 // Return true if this is a register operand.
446 INLINE(bool is_reg() const); 446 INLINE(bool is_reg() const);
447 447
448 // Return true of this operand fits in one instruction so that no 448 // Return true of this operand fits in one instruction so that no
449 // 2-instruction solution with a load into the ip register is necessary. 449 // 2-instruction solution with a load into the ip register is necessary.
450 bool is_single_instruction() const; 450 bool is_single_instruction() const;
451 bool must_use_constant_pool() const;
451 452
452 inline int32_t immediate() const { 453 inline int32_t immediate() const {
453 ASSERT(!rm_.is_valid()); 454 ASSERT(!rm_.is_valid());
454 return imm32_; 455 return imm32_;
455 } 456 }
456 457
457 Register rm() const { return rm_; } 458 Register rm() const { return rm_; }
458 Register rs() const { return rs_; } 459 Register rs() const { return rs_; }
459 ShiftOp shift_op() const { return shift_op_; } 460 ShiftOp shift_op() const { return shift_op_; }
460 461
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after
1291 public: 1292 public:
1292 EnsureSpace(Assembler* assembler) { 1293 EnsureSpace(Assembler* assembler) {
1293 assembler->CheckBuffer(); 1294 assembler->CheckBuffer();
1294 } 1295 }
1295 }; 1296 };
1296 1297
1297 1298
1298 } } // namespace v8::internal 1299 } } // namespace v8::internal
1299 1300
1300 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1301 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698