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

Side by Side Diff: src/arm64/lithium-codegen-arm64.h

Issue 577273002: [arm64] cleanup heap numbers detection (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ 5 #ifndef V8_ARM64_LITHIUM_CODEGEN_ARM64_H_
6 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ 6 #define V8_ARM64_LITHIUM_CODEGEN_ARM64_H_
7 7
8 #include "src/arm64/lithium-arm64.h" 8 #include "src/arm64/lithium-arm64.h"
9 9
10 #include "src/arm64/lithium-gap-resolver-arm64.h" 10 #include "src/arm64/lithium-gap-resolver-arm64.h"
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 void DeoptimizeIf(Condition cond, LInstruction* instr); 221 void DeoptimizeIf(Condition cond, LInstruction* instr);
222 void DeoptimizeIfZero(Register rt, LInstruction* instr); 222 void DeoptimizeIfZero(Register rt, LInstruction* instr);
223 void DeoptimizeIfNotZero(Register rt, LInstruction* instr); 223 void DeoptimizeIfNotZero(Register rt, LInstruction* instr);
224 void DeoptimizeIfNegative(Register rt, LInstruction* instr); 224 void DeoptimizeIfNegative(Register rt, LInstruction* instr);
225 void DeoptimizeIfSmi(Register rt, LInstruction* instr); 225 void DeoptimizeIfSmi(Register rt, LInstruction* instr);
226 void DeoptimizeIfNotSmi(Register rt, LInstruction* instr); 226 void DeoptimizeIfNotSmi(Register rt, LInstruction* instr);
227 void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index, 227 void DeoptimizeIfRoot(Register rt, Heap::RootListIndex index,
228 LInstruction* instr); 228 LInstruction* instr);
229 void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index, 229 void DeoptimizeIfNotRoot(Register rt, Heap::RootListIndex index,
230 LInstruction* instr); 230 LInstruction* instr);
231 void DeoptimizeIfNotHeapNumber(Register object, LInstruction* instr);
231 void DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr); 232 void DeoptimizeIfMinusZero(DoubleRegister input, LInstruction* instr);
232 void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr); 233 void DeoptimizeIfBitSet(Register rt, int bit, LInstruction* instr);
233 void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr); 234 void DeoptimizeIfBitClear(Register rt, int bit, LInstruction* instr);
234 235
235 MemOperand PrepareKeyedExternalArrayOperand(Register key, 236 MemOperand PrepareKeyedExternalArrayOperand(Register key,
236 Register base, 237 Register base,
237 Register scratch, 238 Register scratch,
238 bool key_is_smi, 239 bool key_is_smi,
239 bool key_is_constant, 240 bool key_is_constant,
240 int constant_key, 241 int constant_key,
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 453
453 protected: 454 protected:
454 MacroAssembler* masm() const { return codegen_->masm(); } 455 MacroAssembler* masm() const { return codegen_->masm(); }
455 456
456 LCodeGen* codegen_; 457 LCodeGen* codegen_;
457 }; 458 };
458 459
459 } } // namespace v8::internal 460 } } // namespace v8::internal
460 461
461 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_ 462 #endif // V8_ARM64_LITHIUM_CODEGEN_ARM64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698