OLD | NEW |
1 //===- subzero/src/IceTargetLoweringARM32.cpp - ARM32 lowering ------------===// | 1 //===- subzero/src/IceTargetLoweringARM32.cpp - ARM32 lowering ------------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 I64PairRegisters[RegARM32::val] = isI64Pair; \ | 176 I64PairRegisters[RegARM32::val] = isI64Pair; \ |
177 Float32Registers[RegARM32::val] = isFP32; \ | 177 Float32Registers[RegARM32::val] = isFP32; \ |
178 Float64Registers[RegARM32::val] = isFP64; \ | 178 Float64Registers[RegARM32::val] = isFP64; \ |
179 VectorRegisters[RegARM32::val] = isVec128; \ | 179 VectorRegisters[RegARM32::val] = isVec128; \ |
180 RegisterAliases[RegARM32::val].resize(RegARM32::Reg_NUM); \ | 180 RegisterAliases[RegARM32::val].resize(RegARM32::Reg_NUM); \ |
181 for (SizeT RegAlias : alias_init) { \ | 181 for (SizeT RegAlias : alias_init) { \ |
182 assert(!RegisterAliases[RegARM32::val][RegAlias] && \ | 182 assert(!RegisterAliases[RegARM32::val][RegAlias] && \ |
183 "Duplicate alias for " #val); \ | 183 "Duplicate alias for " #val); \ |
184 RegisterAliases[RegARM32::val].set(RegAlias); \ | 184 RegisterAliases[RegARM32::val].set(RegAlias); \ |
185 } \ | 185 } \ |
186 assert(RegisterAliases[RegARM32::val][RegARM32::val]); \ | 186 RegisterAliases[RegARM32::val].set(RegARM32::val); \ |
187 ScratchRegs[RegARM32::val] = scratch; | 187 ScratchRegs[RegARM32::val] = scratch; |
188 REGARM32_TABLE; | 188 REGARM32_TABLE; |
189 #undef X | 189 #undef X |
190 TypeToRegisterSet[IceType_void] = InvalidRegisters; | 190 TypeToRegisterSet[IceType_void] = InvalidRegisters; |
191 TypeToRegisterSet[IceType_i1] = IntegerRegisters; | 191 TypeToRegisterSet[IceType_i1] = IntegerRegisters; |
192 TypeToRegisterSet[IceType_i8] = IntegerRegisters; | 192 TypeToRegisterSet[IceType_i8] = IntegerRegisters; |
193 TypeToRegisterSet[IceType_i16] = IntegerRegisters; | 193 TypeToRegisterSet[IceType_i16] = IntegerRegisters; |
194 TypeToRegisterSet[IceType_i32] = IntegerRegisters; | 194 TypeToRegisterSet[IceType_i32] = IntegerRegisters; |
195 TypeToRegisterSet[IceType_i64] = I64PairRegisters; | 195 TypeToRegisterSet[IceType_i64] = I64PairRegisters; |
196 TypeToRegisterSet[IceType_f32] = Float32Registers; | 196 TypeToRegisterSet[IceType_f32] = Float32Registers; |
(...skipping 2374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2571 return; | 2571 return; |
2572 } | 2572 } |
2573 | 2573 |
2574 void TargetARM32::lowerInsertElement(const InstInsertElement *Inst) { | 2574 void TargetARM32::lowerInsertElement(const InstInsertElement *Inst) { |
2575 (void)Inst; | 2575 (void)Inst; |
2576 UnimplementedError(Func->getContext()->getFlags()); | 2576 UnimplementedError(Func->getContext()->getFlags()); |
2577 } | 2577 } |
2578 | 2578 |
2579 namespace { | 2579 namespace { |
2580 inline uint64_t getConstantMemoryOrder(Operand *Opnd) { | 2580 inline uint64_t getConstantMemoryOrder(Operand *Opnd) { |
2581 if (auto Integer = llvm::dyn_cast<ConstantInteger32>(Opnd)) | 2581 if (auto *Integer = llvm::dyn_cast<ConstantInteger32>(Opnd)) |
2582 return Integer->getValue(); | 2582 return Integer->getValue(); |
2583 return Intrinsics::MemoryOrderInvalid; | 2583 return Intrinsics::MemoryOrderInvalid; |
2584 } | 2584 } |
2585 } // end of anonymous namespace | 2585 } // end of anonymous namespace |
2586 | 2586 |
2587 void TargetARM32::lowerAtomicRMW(Variable *Dest, uint32_t Operation, | 2587 void TargetARM32::lowerAtomicRMW(Variable *Dest, uint32_t Operation, |
2588 Operand *Ptr, Operand *Val) { | 2588 Operand *Ptr, Operand *Val) { |
2589 // retry: | 2589 // retry: |
2590 // ldrex contents, [addr] | 2590 // ldrex contents, [addr] |
2591 // op tmp, contents, operand | 2591 // op tmp, contents, operand |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3489 return Subst; | 3489 return Subst; |
3490 } | 3490 } |
3491 } | 3491 } |
3492 } | 3492 } |
3493 } | 3493 } |
3494 | 3494 |
3495 // Go through the various types of operands: OperandARM32Mem, | 3495 // Go through the various types of operands: OperandARM32Mem, |
3496 // OperandARM32Flex, Constant, and Variable. Given the above assertion, if | 3496 // OperandARM32Flex, Constant, and Variable. Given the above assertion, if |
3497 // type of operand is not legal (e.g., OperandARM32Mem and !Legal_Mem), we | 3497 // type of operand is not legal (e.g., OperandARM32Mem and !Legal_Mem), we |
3498 // can always copy to a register. | 3498 // can always copy to a register. |
3499 if (auto Mem = llvm::dyn_cast<OperandARM32Mem>(From)) { | 3499 if (auto *Mem = llvm::dyn_cast<OperandARM32Mem>(From)) { |
3500 static const struct { | 3500 static const struct { |
3501 bool CanHaveOffset; | 3501 bool CanHaveOffset; |
3502 bool CanHaveIndex; | 3502 bool CanHaveIndex; |
3503 } MemTraits[] = { | 3503 } MemTraits[] = { |
3504 #define X(tag, elementty, int_width, vec_width, sbits, ubits, rraddr) \ | 3504 #define X(tag, elementty, int_width, vec_width, sbits, ubits, rraddr) \ |
3505 { (ubits) > 0, rraddr } \ | 3505 { (ubits) > 0, rraddr } \ |
3506 , | 3506 , |
3507 ICETYPEARM32_TABLE | 3507 ICETYPEARM32_TABLE |
3508 #undef X | 3508 #undef X |
3509 }; | 3509 }; |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3554 if (Allowed & Legal_Mem) { | 3554 if (Allowed & Legal_Mem) { |
3555 From = Mem; | 3555 From = Mem; |
3556 } else { | 3556 } else { |
3557 Variable *Reg = makeReg(Ty, RegNum); | 3557 Variable *Reg = makeReg(Ty, RegNum); |
3558 _ldr(Reg, Mem); | 3558 _ldr(Reg, Mem); |
3559 From = Reg; | 3559 From = Reg; |
3560 } | 3560 } |
3561 return From; | 3561 return From; |
3562 } | 3562 } |
3563 | 3563 |
3564 if (auto Flex = llvm::dyn_cast<OperandARM32Flex>(From)) { | 3564 if (auto *Flex = llvm::dyn_cast<OperandARM32Flex>(From)) { |
3565 if (!(Allowed & Legal_Flex)) { | 3565 if (!(Allowed & Legal_Flex)) { |
3566 if (auto FlexReg = llvm::dyn_cast<OperandARM32FlexReg>(Flex)) { | 3566 if (auto *FlexReg = llvm::dyn_cast<OperandARM32FlexReg>(Flex)) { |
3567 if (FlexReg->getShiftOp() == OperandARM32::kNoShift) { | 3567 if (FlexReg->getShiftOp() == OperandARM32::kNoShift) { |
3568 From = FlexReg->getReg(); | 3568 From = FlexReg->getReg(); |
3569 // Fall through and let From be checked as a Variable below, where it | 3569 // Fall through and let From be checked as a Variable below, where it |
3570 // may or may not need a register. | 3570 // may or may not need a register. |
3571 } else { | 3571 } else { |
3572 return copyToReg(Flex, RegNum); | 3572 return copyToReg(Flex, RegNum); |
3573 } | 3573 } |
3574 } else { | 3574 } else { |
3575 return copyToReg(Flex, RegNum); | 3575 return copyToReg(Flex, RegNum); |
3576 } | 3576 } |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3637 llvm::cast<Constant>(From)->setShouldBePooled(true); | 3637 llvm::cast<Constant>(From)->setShouldBePooled(true); |
3638 Constant *Offset = Ctx->getConstantSym(0, StrBuf.str(), true); | 3638 Constant *Offset = Ctx->getConstantSym(0, StrBuf.str(), true); |
3639 Variable *BaseReg = makeReg(getPointerType()); | 3639 Variable *BaseReg = makeReg(getPointerType()); |
3640 _movw(BaseReg, Offset); | 3640 _movw(BaseReg, Offset); |
3641 _movt(BaseReg, Offset); | 3641 _movt(BaseReg, Offset); |
3642 From = formMemoryOperand(BaseReg, Ty); | 3642 From = formMemoryOperand(BaseReg, Ty); |
3643 return copyToReg(From, RegNum); | 3643 return copyToReg(From, RegNum); |
3644 } | 3644 } |
3645 } | 3645 } |
3646 | 3646 |
3647 if (auto Var = llvm::dyn_cast<Variable>(From)) { | 3647 if (auto *Var = llvm::dyn_cast<Variable>(From)) { |
3648 // Check if the variable is guaranteed a physical register. This can happen | 3648 // Check if the variable is guaranteed a physical register. This can happen |
3649 // either when the variable is pre-colored or when it is assigned infinite | 3649 // either when the variable is pre-colored or when it is assigned infinite |
3650 // weight. | 3650 // weight. |
3651 bool MustHaveRegister = (Var->hasReg() || Var->mustHaveReg()); | 3651 bool MustHaveRegister = (Var->hasReg() || Var->mustHaveReg()); |
3652 // We need a new physical register for the operand if: | 3652 // We need a new physical register for the operand if: |
3653 // Mem is not allowed and Var isn't guaranteed a physical | 3653 // Mem is not allowed and Var isn't guaranteed a physical |
3654 // register, or | 3654 // register, or |
3655 // RegNum is required and Var->getRegNum() doesn't match. | 3655 // RegNum is required and Var->getRegNum() doesn't match. |
3656 if ((!(Allowed & Legal_Mem) && !MustHaveRegister) || | 3656 if ((!(Allowed & Legal_Mem) && !MustHaveRegister) || |
3657 (RegNum != Variable::NoRegister && RegNum != Var->getRegNum())) { | 3657 (RegNum != Variable::NoRegister && RegNum != Var->getRegNum())) { |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3970 << ".eabi_attribute 68, 1 @ Tag_Virtualization_use\n"; | 3970 << ".eabi_attribute 68, 1 @ Tag_Virtualization_use\n"; |
3971 if (CPUFeatures.hasFeature(TargetARM32Features::HWDivArm)) { | 3971 if (CPUFeatures.hasFeature(TargetARM32Features::HWDivArm)) { |
3972 Str << ".eabi_attribute 44, 2 @ Tag_DIV_use\n"; | 3972 Str << ".eabi_attribute 44, 2 @ Tag_DIV_use\n"; |
3973 } | 3973 } |
3974 // Technically R9 is used for TLS with Sandboxing, and we reserve it. | 3974 // Technically R9 is used for TLS with Sandboxing, and we reserve it. |
3975 // However, for compatibility with current NaCl LLVM, don't claim that. | 3975 // However, for compatibility with current NaCl LLVM, don't claim that. |
3976 Str << ".eabi_attribute 14, 3 @ Tag_ABI_PCS_R9_use: Not used\n"; | 3976 Str << ".eabi_attribute 14, 3 @ Tag_ABI_PCS_R9_use: Not used\n"; |
3977 } | 3977 } |
3978 | 3978 |
3979 } // end of namespace Ice | 3979 } // end of namespace Ice |
OLD | NEW |