| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InlineAsmLowering.cpp | 389 unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1); in lowerInlineAsm() local 390 OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID); in lowerInlineAsm() 391 Inst.addImm(OpFlags); in lowerInlineAsm() 507 unsigned OpFlags = in lowerInlineAsm() local 509 Inst.addImm(OpFlags); in lowerInlineAsm() 526 unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1); in lowerInlineAsm() local 527 OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID); in lowerInlineAsm() 528 Inst.addImm(OpFlags); in lowerInlineAsm()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRAsmPrinter.cpp | 107 unsigned OpFlags = MI->getOperand(OpNum - 1).getImm(); in PrintAsmOperand() local 108 unsigned NumOpRegs = InlineAsm::getNumOperandRegisters(OpFlags); in PrintAsmOperand() 164 unsigned OpFlags = MI->getOperand(OpNum - 1).getImm(); in PrintAsmMemoryOperand() local 165 unsigned NumOpRegs = InlineAsm::getNumOperandRegisters(OpFlags); in PrintAsmMemoryOperand()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterInlineAsm.cpp | 238 unsigned OpFlags = MI->getOperand(OpNo).getImm(); in EmitMSInlineAsmStr() local 239 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1; in EmitMSInlineAsmStr() 249 unsigned OpFlags = MI->getOperand(OpNo).getImm(); in EmitMSInlineAsmStr() local 252 if (InlineAsm::isMemKind(OpFlags)) { in EmitMSInlineAsmStr() 407 unsigned OpFlags = MI->getOperand(OpNo).getImm(); in EmitGCCInlineAsmStr() local 408 OpNo += InlineAsm::getNumOperandRegisters(OpFlags) + 1; in EmitGCCInlineAsmStr() 418 unsigned OpFlags = MI->getOperand(OpNo).getImm(); in EmitGCCInlineAsmStr() local 434 } else if (InlineAsm::isMemKind(OpFlags)) { in EmitGCCInlineAsmStr()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86InstrBuilder.h | 224 unsigned GlobalBaseReg, unsigned char OpFlags) { in addConstantPoolReference() argument 227 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0); in addConstantPoolReference()
|
| H A D | X86FastISel.cpp | 3481 unsigned char OpFlags = Subtarget->classifyGlobalFunctionReference(GV); in fastLowerCall() local 3485 bool NeedLoad = OpFlags == X86II::MO_DLLIMPORT || in fastLowerCall() 3486 OpFlags == X86II::MO_GOTPCREL || in fastLowerCall() 3487 OpFlags == X86II::MO_COFFSTUB; in fastLowerCall() 3496 MIB.addSym(Symbol, OpFlags); in fastLowerCall() 3498 MIB.addGlobalAddress(GV, 0, OpFlags); in fastLowerCall()
|
| H A D | X86ISelLowering.h | 1505 const unsigned char OpFlags = 0) const;
|
| H A D | X86ISelLowering.cpp | 19203 const GlobalValue *GV, const unsigned char OpFlags) const { in getGlobalWrapperKind() 19214 if (OpFlags == X86II::MO_GOTPCREL) in getGlobalWrapperKind() 19278 unsigned char OpFlags = in LowerBlockAddress() local 19288 if (isGlobalRelativeToPICBase(OpFlags)) { in LowerBlockAddress() 19315 unsigned char OpFlags; in LowerGlobalOrExternal() local 19317 OpFlags = Subtarget.classifyGlobalFunctionReference(GV, Mod); in LowerGlobalOrExternal() 19319 OpFlags = Subtarget.classifyGlobalReference(GV, Mod); in LowerGlobalOrExternal() 19320 bool HasPICReg = isGlobalRelativeToPICBase(OpFlags); in LowerGlobalOrExternal() 19321 bool NeedsLoad = isGlobalStubReference(OpFlags); in LowerGlobalOrExternal() 19334 if (OpFlags == X86II::MO_NO_FLAG && Offset >= 0 && in LowerGlobalOrExternal() [all …]
|
| /freebsd-13.1/stand/efi/include/ |
| H A D | efipxebc.h | 321 IN UINT16 OpFlags, 337 IN UINT16 OpFlags,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kISelLowering.cpp | 738 if (OpFlags == M68kII::MO_GOTPCREL) { in LowerCall() 752 unsigned char OpFlags = in LowerCall() local 756 S->getSymbol(), getPointerTy(DAG.getDataLayout()), OpFlags); in LowerCall() 2565 if (M68kII::isPCRelBlockReference(OpFlags)) { in LowerBlockAddress() 2572 if (M68kII::isGlobalRelativeToPICBase(OpFlags)) { in LowerBlockAddress() 2584 unsigned char OpFlags = Subtarget.classifyGlobalReference(GV); in LowerGlobalAddress() local 2590 if (M68kII::isDirectGlobalReference(OpFlags)) { in LowerGlobalAddress() 2594 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags); in LowerGlobalAddress() 2597 if (M68kII::isPCRelGlobalReference(OpFlags)) in LowerGlobalAddress() 2603 if (M68kII::isGlobalRelativeToPICBase(OpFlags)) { in LowerGlobalAddress() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/ |
| H A D | AArch64LegalizerInfo.cpp | 904 unsigned OpFlags = ST->ClassifyGlobalReference(GV, TM); in legalizeSmallCMGlobalValue() local 906 if (OpFlags & AArch64II::MO_GOT) in legalizeSmallCMGlobalValue() 912 .addGlobalAddress(GV, Offset, OpFlags | AArch64II::MO_PAGE); in legalizeSmallCMGlobalValue() 929 if (OpFlags & AArch64II::MO_TAGGED) { in legalizeSmallCMGlobalValue() 941 OpFlags | AArch64II::MO_PAGEOFF | AArch64II::MO_NC); in legalizeSmallCMGlobalValue()
|
| H A D | AArch64InstructionSelector.cpp | 418 void materializeLargeCMVal(MachineInstr &I, const Value *V, unsigned OpFlags); 1869 MachineInstr &I, const Value *V, unsigned OpFlags) { in materializeLargeCMVal() argument 1876 MovZ->getOperand(1).setTargetFlags(OpFlags | AArch64II::MO_G0 | in materializeLargeCMVal() 2679 unsigned OpFlags = STI.ClassifyGlobalReference(GV, TM); in select() local 2680 if (OpFlags & AArch64II::MO_GOT) { in select() 2682 I.getOperand(1).setTargetFlags(OpFlags); in select() 2685 materializeLargeCMVal(I, GV, OpFlags); in select() 2690 I.getOperand(1).setTargetFlags(OpFlags); in select() 2693 I.getOperand(1).setTargetFlags(OpFlags | AArch64II::MO_PAGE); in select() 5771 unsigned OpFlags = STI.ClassifyGlobalReference(GV, MF.getTarget()); in tryFoldAddLowIntoImm() local [all …]
|
| /freebsd-13.1/tools/tools/ath/athprom/ |
| H A D | eeprom-14 | 14 | OpFlags: [$opCapFlags] 11A 1, 11G 1 |
|
| /freebsd-13.1/sys/contrib/edk2/Include/Uefi/ |
| H A D | UefiPxe.h | 876 PXE_OPFLAGS OpFlags; member
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64FastISel.cpp | 452 unsigned OpFlags = Subtarget->ClassifyGlobalReference(GV, TM); in materializeGV() local 461 if (OpFlags & AArch64II::MO_GOT) { in materializeGV() 465 .addGlobalAddress(GV, 0, AArch64II::MO_PAGE | OpFlags); in materializeGV() 479 AArch64II::MO_NC | OpFlags); in materializeGV() 497 .addGlobalAddress(GV, 0, AArch64II::MO_PAGE | OpFlags); in materializeGV() 504 AArch64II::MO_PAGEOFF | AArch64II::MO_NC | OpFlags) in materializeGV()
|
| H A D | AArch64InstrInfo.cpp | 1976 unsigned OpFlags = Subtarget.ClassifyGlobalReference(GV, TM); in expandPostRAPseudo() local 1979 if ((OpFlags & AArch64II::MO_GOT) != 0) { in expandPostRAPseudo() 1981 .addGlobalAddress(GV, 0, OpFlags); in expandPostRAPseudo() 2019 .addGlobalAddress(GV, 0, OpFlags); in expandPostRAPseudo() 2022 .addGlobalAddress(GV, 0, OpFlags | AArch64II::MO_PAGE); in expandPostRAPseudo() 2023 unsigned char LoFlags = OpFlags | AArch64II::MO_PAGEOFF | MO_NC; in expandPostRAPseudo()
|
| H A D | AArch64ISelLowering.cpp | 6122 unsigned OpFlags = in LowerCall() local 6124 if (OpFlags & AArch64II::MO_GOT) { in LowerCall() 6125 Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags); in LowerCall() 6446 unsigned OpFlags = Subtarget->ClassifyGlobalReference(GV, getTargetMachine()); in LowerGlobalAddress() local 6448 if (OpFlags != AArch64II::MO_NO_FLAG) in LowerGlobalAddress() 6454 if ((OpFlags & AArch64II::MO_GOT) != 0) { in LowerGlobalAddress() 6455 return getGOT(GN, DAG, OpFlags); in LowerGlobalAddress() 6460 Result = getAddrLarge(GN, DAG, OpFlags); in LowerGlobalAddress() 6462 Result = getAddrTiny(GN, DAG, OpFlags); in LowerGlobalAddress() 6464 Result = getAddr(GN, DAG, OpFlags); in LowerGlobalAddress() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/ |
| H A D | ARMAsmPrinter.cpp | 358 unsigned OpFlags = MI->getOperand(OpNum).getImm(); in PrintAsmOperand() local 359 OpNum += InlineAsm::getNumOperandRegisters(OpFlags) + 1; in PrintAsmOperand()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVISelLowering.cpp | 8085 unsigned OpFlags = RISCVII::MO_CALL; in LowerCall() local 8087 OpFlags = RISCVII::MO_PLT; in LowerCall() 8089 Callee = DAG.getTargetGlobalAddress(GV, DL, PtrVT, 0, OpFlags); in LowerCall() 8091 unsigned OpFlags = RISCVII::MO_CALL; in LowerCall() local 8095 OpFlags = RISCVII::MO_PLT; in LowerCall() 8097 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), PtrVT, OpFlags); in LowerCall()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 8624 unsigned OpFlags = InlineAsm::getFlagWord(InlineAsm::Kind_Mem, 1); in visitInlineAsm() local 8625 OpFlags = InlineAsm::getFlagWordForMem(OpFlags, ConstraintID); in visitInlineAsm() 8626 AsmNodeOperands.push_back(DAG.getTargetConstant(OpFlags, getCurSDLoc(), in visitInlineAsm()
|