| /openbsd-src/gnu/llvm/llvm/lib/XRay/ |
| H A D | InstrumentationMap.cpp | 146 bool Is32Bit = ObjFile.getBinary()->makeTriple().isArch32Bit(); in loadObj() local 147 size_t ELFSledEntrySize = Is32Bit ? 16 : 32; in loadObj() 165 const int WordSize = Is32Bit ? 4 : 8; in loadObj() 176 if (Is32Bit) in loadObj() 181 if (Is32Bit) in loadObj()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64InstructionSelector.cpp | 1123 const bool Is32Bit = Size == 32; in emitSelect() local 1125 unsigned Opc = Is32Bit ? AArch64::FCSELSrrr : AArch64::FCSELDrrr; in emitSelect() 1132 unsigned Opc = Is32Bit ? AArch64::CSELWr : AArch64::CSELXr; in emitSelect() 1134 auto TryFoldBinOpIntoSelect = [&Opc, Is32Bit, &CC, &MRI, in emitSelect() 1149 Opc = Is32Bit ? AArch64::CSNEGWr : AArch64::CSNEGXr; in emitSelect() 1166 Opc = Is32Bit ? AArch64::CSINVWr : AArch64::CSINVXr; in emitSelect() 1185 Opc = Is32Bit ? AArch64::CSINCWr : AArch64::CSINCXr; in emitSelect() 1201 auto TryOptSelectCst = [&Opc, &True, &False, &CC, Is32Bit, &MRI, in emitSelect() 1210 Register ZReg = Is32Bit ? AArch64::WZR : AArch64::XZR; in emitSelect() 1217 Opc = Is32Bit ? AArch64::CSINCWr : AArch64::CSINCXr; in emitSelect() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ELFHeader.h | 85 bool Is32Bit() const { in Is32Bit() function
|
| H A D | ELFHeader.cpp | 120 const unsigned byte_size = Is32Bit() ? 4 : 8; in Parse()
|
| H A D | ObjectFileELF.cpp | 2480 if (hdr->Is32Bit()) { in ParsePLTRelocations() 2652 if (hdr->Is32Bit()) { in ApplyRelocations() 2668 if (hdr->Is32Bit()) { in ApplyRelocations()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | X86RecognizableInstr.h | 226 bool Is32Bit; variable
|
| H A D | X86RecognizableInstr.cpp | 147 Is32Bit(false), Is64Bit(false), Operands(&insn.Operands.OperandList), in RecognizableInstr() 155 Is32Bit = true; in RecognizableInstr() 884 UID, Is32Bit, OpPrefix == 0, in emitDecodePath() 889 Is32Bit, OpPrefix == 0, IgnoresVEX_L || EncodeRC, in emitDecodePath()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/AsmParser/ |
| H A D | X86AsmParser.cpp | 128 SwitchMode(X86::Is32Bit); in MatchInstruction() 1217 return getSTI().getFeatureBits()[X86::Is32Bit]; in is32BitMode() 1225 FeatureBitset AllModes({X86::Is64Bit, X86::Is32Bit, X86::Is16Bit}); in SwitchMode() 3409 ForcedDataPrefix = X86::Is32Bit; in ParseInstruction() 4173 if (ForcedDataPrefix == X86::Is32Bit) in MatchAndEmitATTInstruction() 4174 SwitchMode(X86::Is32Bit); in MatchAndEmitATTInstruction() 4180 if (ForcedDataPrefix == X86::Is32Bit) { in MatchAndEmitATTInstruction() 4759 SwitchMode(X86::Is32Bit); in ParseDirectiveCode()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86InstPrinterCommon.cpp | 399 else if (STI.hasFeature(X86::Is32Bit)) in printInstFlags()
|
| H A D | X86AsmBackend.cpp | 296 assert((STI.hasFeature(X86::Is32Bit) || STI.hasFeature(X86::Is64Bit)) && in determinePaddingPrefix() 496 if (!(STI.hasFeature(X86::Is64Bit) || STI.hasFeature(X86::Is32Bit))) in canPadBranches()
|
| H A D | X86MCTargetDesc.cpp | 120 bool Is32BitMode = STI.hasFeature(X86::Is32Bit); in needsAddressSizeOverride() 159 if (STI.hasFeature(X86::Is32Bit)) { in needsAddressSizeOverride()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelDAGToDAG.cpp | 3093 bool Is32Bit = InVT == MVT::i32; in getCompoundZeroComparisonInGPR() local 3100 ToExtend = SDValue(CurDAG->getMachineNode(Is32Bit ? PPC::NOR : PPC::NOR8, in getCompoundZeroComparisonInGPR() 3105 if (Is32Bit) { in getCompoundZeroComparisonInGPR() 3126 if (!Is32Bit && in getCompoundZeroComparisonInGPR() 3131 if (!Is32Bit && in getCompoundZeroComparisonInGPR() 3136 assert(Is32Bit && "Should have handled the 32-bit sequences above."); in getCompoundZeroComparisonInGPR()
|
| H A D | PPCISelLowering.cpp | 14171 bool Is32Bit = FirstConversion == PPCISD::FCTIWZ || in combineElementTruncationToVectorTruncation() local 14187 if (Is32Bit && !isFPExtLoad(NextOp.getOperand(0).getOperand(0))) in combineElementTruncationToVectorTruncation() 14202 if (Is32Bit) { in combineElementTruncationToVectorTruncation()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrInfo.td | 24 def Is32Bit : Predicate<"!Subtarget->is64Bit()">; 772 let Predicates = [Is32Bit], isCodeGenOnly = 1 in 1788 let Predicates = [Is32Bit] in {
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86.td | 24 def Is32Bit : SubtargetFeature<"32bit-mode", "Is32Bit", "true",
|
| H A D | X86InstrInfo.td | 1021 AssemblerPredicate<(all_of Is32Bit), "32-bit mode">;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86Disassembler.cpp | 1724 } else if (FB[X86::Is32Bit]) { in X86GenericDisassembler()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64InstrInfo.cpp | 6905 bool Is32Bit = (DefMI->getOpcode() == AArch64::ANDWri); in optimizeCondBranch() local 6907 DefMI->getOperand(2).getImm(), Is32Bit ? 32 : 64); in optimizeCondBranch() 6937 if (!Is32Bit && Imm < 32) in optimizeCondBranch()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelLowering.cpp | 2878 bool Is32Bit = is32Bit(VT); in lowerGR128Binary() local 2879 Even = DAG.getTargetExtractSubreg(SystemZ::even128(Is32Bit), DL, VT, Result); in lowerGR128Binary() 2880 Odd = DAG.getTargetExtractSubreg(SystemZ::odd128(Is32Bit), DL, VT, Result); in lowerGR128Binary()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/AsmParser/ |
| H A D | MipsAsmParser.cpp | 4807 bool Is32Bit = isInt<32>(ImmValue) || (!isGP64bit() && isUInt<32>(ImmValue)); in expandAliasImmediate() local 4819 if (!loadImmediate(ImmValue, DstReg, Mips::NoRegister, Is32Bit, false, in expandAliasImmediate()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGBuiltin.cpp | 10183 bool Is32Bit = BuiltinID == clang::AArch64::BI__builtin_arm_rsr || in EmitAArch64BuiltinExpr() local 10191 if (Is32Bit) { in EmitAArch64BuiltinExpr()
|