Home
last modified time | relevance | path

Searched refs:isGlobal (Results 1 – 25 of 91) sorted by relevance

1234

/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
HDWebAssemblyWasmObjectWriter.cpp111 if (SymA.isGlobal()) in getRelocType()
130 if (SymA.isGlobal()) in getRelocType()
147 if (SymA.isGlobal()) in getRelocType()
HDWebAssemblyTargetStreamer.cpp69 assert(Sym->isGlobal()); in emitGlobalType()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/M68k/
HDM68kMCInstLower.cpp40 assert((MO.isGlobal() || MO.isSymbol() || MO.isMBB()) && in GetSymbolFromOperand()
44 if (MO.isGlobal() && TT.isOSBinFormatELF()) in GetSymbolFromOperand()
56 if (MO.isGlobal()) { in GetSymbolFromOperand()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDCFGuardLongjmp.cpp85 if (!MO.isGlobal()) in runOnMachineFunction()
HDRegUsageInfoPropagate.cpp88 if (MO.isGlobal()) in findCalledFunction()
HDMachineLateInstrsCleanup.cpp175 MO.isGlobal() || MO.isSymbol())) in isCandidate()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCMCInstLower.cpp36 if (MO.isGlobal()) { in GetSymbolFromOperand()
105 assert(MO.isGlobal() && "Only expecting a global MachineOperand here!"); in GetSymbolRef()
HDPPCAsmPrinter.cpp630 } else if (CalleeMO.isGlobal()) { in LowerPATCHPOINT()
875 assert(MO.isGlobal() && "Only expecting a global MachineOperand here!\n"); in emitInstruction()
1041 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()) && in emitInstruction()
1106 assert(MO.isGlobal() && "Invalid operand for ADDItoc[8]."); in emitInstruction()
1129 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()) && in emitInstruction()
1158 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()) && in emitInstruction()
1183 if (!MO.isGlobal()) in emitInstruction()
1203 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()) && in emitInstruction()
1245 assert((MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isBlockAddress()) && in emitInstruction()
1253 MO.isGlobal() && Subtarget->isGVIndirectSymbol(MO.getGlobal()); in emitInstruction()
[all …]
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDMachineOperand.h347 bool isGlobal() const { return OpKind == MO_GlobalAddress; } in isGlobal() function
583 assert(isGlobal() && "Wrong MachineOperand accessor"); in getGlobal()
630 assert((isGlobal() || isSymbol() || isMCSymbol() || isCPI() || in getOffset()
700 assert((isGlobal() || isSymbol() || isMCSymbol() || isCPI() || in setOffset()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
HDWebAssemblyDebugValueManager.cpp57 (OpA.isGlobal() && OpB.isGlobal() && OpA.getGlobal() == OpB.getGlobal())) in isSameScalarConst()
HDWebAssemblyUtilities.cpp56 assert(MO.isGlobal() || MO.isSymbol()); in mayThrow()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
HDRISCVMergeBaseOffset.cpp97 if (!(HiOp1.isGlobal() || HiOp1.isCPI() || HiOp1.isBlockAddress()) || in INITIALIZE_PASS()
118 !(LoOp2.isGlobal() || LoOp2.isCPI() || LoOp2.isBlockAddress()) || in INITIALIZE_PASS()
128 if (HiOp1.isGlobal()) { in INITIALIZE_PASS()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonCopyToCombine.cpp667 if (HiOperand.isGlobal()) { in emitCombineII()
674 if (LoOperand.isGlobal()) { in emitCombineII()
764 if (HiOperand.isGlobal()) { in emitCombineIR()
812 if (LoOperand.isGlobal()) { in emitCombineRI()
HDHexagonGenMemAbsolute.cpp127 bool IsGlobal = MI->getOperand(1).isGlobal(); in runOnMachineFunction()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
HDLeonPasses.cpp90 if (MO.isGlobal()) { in runOnMachineFunction()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86OptimizeLEAs.cpp209 MO.isGlobal() || MO.isBlockAddress() || MO.isMCSymbol() || MO.isMBB(); in isValidDispOp()
222 (MO1.isGlobal() && MO2.isGlobal() && in isSimilarDispOp()
HDX86IndirectBranchTracking.cpp90 if (!MOp.isGlobal()) in IsCallReturnTwice()
HDX86InstrBuilder.h111 if (Op3.isGlobal()) in getAddressFromInstr()
HDX86SchedPredicates.td45 CheckNonPortable<"MI.getOperand(4).isGlobal()">
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/AVR/
HDAVRMCInstLower.cpp41 bool IsFunction = MO.isGlobal() && isa<Function>(MO.getGlobal()); in lowerSymbolOperand()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinterInlineAsm.cpp460 assert(MO.isGlobal() && "caller should check MO.isGlobal"); in PrintSymbolOperand()
491 if (MO.isGlobal()) { in PrintAsmOperand()
/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/MC/
HDMCSymbolWasm.h47 bool isGlobal() const { return Type == wasm::WASM_SYMBOL_TYPE_GLOBAL; } in isGlobal() function
/freebsd-14-stable/contrib/llvm-project/lld/ELF/
HDSymbols.cpp525 return !isGlobal() && other.isGlobal(); in shouldReplace()
/freebsd-14-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDErrnoChecker.cpp206 if (CallF->isExternC() && CallF->isGlobal() && in checkPreCall()
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDSIFoldOperands.cpp47 assert(FoldOp->isReg() || FoldOp->isGlobal()); in FoldCandidate()
64 bool isGlobal() const { return Kind == MachineOperand::MO_GlobalAddress; } in isGlobal() function
376 if ((Fold.isImm() || Fold.isFI() || Fold.isGlobal()) && Fold.needsShrink()) { in updateOperand()
432 if (Fold.isGlobal()) { in updateOperand()
581 (!OpToFold->isImm() && !OpToFold->isFI() && !OpToFold->isGlobal())) { in tryAddToFoldList()
834 OpToFold.isImm() || OpToFold.isFI() || OpToFold.isGlobal(); in foldOperand()
1464 bool FoldingImm = OpToFold.isImm() || OpToFold.isFI() || OpToFold.isGlobal(); in tryFoldFoldableCopy()

1234