Home
last modified time | relevance | path

Searched refs:Global (Results 1 – 25 of 385) sorted by relevance

12345678910>>...16

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMergeStringPool.cpp165 for (GlobalVariable &Global : M.globals()) { in collectCandidateConstants()
167 LLVM_DEBUG(Global.dump()); in collectCandidateConstants()
173 if (!Global.isConstant() || !Global.hasInitializer()) in collectCandidateConstants()
181 if (Global.hasSection()) in collectCandidateConstants()
186 if (Global.hasMetadata()) in collectCandidateConstants()
197 if (AllUsedGlobals.contains(&Global)) in collectCandidateConstants()
200 if (!hasReplaceableUsers(Global)) in collectCandidateConstants()
203 Align AlignOfGlobal = Global.getAlign().valueOrOne(); in collectCandidateConstants()
213 if (Global.getLinkage() != GlobalValue::PrivateLinkage && in collectCandidateConstants()
214 Global.getLinkage() != GlobalValue::InternalLinkage) in collectCandidateConstants()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DCoreProperties.td5 Global,
9 Global,
13 Global,
17 Global,
21 Global,
25 Global,
29 Global,
33 Global,
37 Global,
41 Global,
[all …]
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DInterpreterProperties.td5 Global,
9 Global,
13 Global,
17 Global,
24 Global,
28 Global,
32 Global,
36 Global,
40 Global,
44 Global,
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_globals.cpp31 typedef __asan_global Global; typedef
34 const Global *g;
43 Global g;
53 Global *g_first, *g_last;
101 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
118 const Global &g = *l->g; in GetGlobalsForAddress()
201 static void RegisterGlobal(const Global *g) { in RegisterGlobal()
242 static void UnregisterGlobal(const Global *g) { in UnregisterGlobal()
270 const Global *g = &dyn_g.g; in StopInitOrderChecking()
442 const Global *g = &dyn_g.g; in __asan_before_dynamic_init()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUserProperties.td5 Global,
9 Global,
13 Global,
17 Global,
21 Global,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemoteProperties.td5 Global,
13 Global,
17 Global,
21 Global,
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp202 void PlainPrinterBase::print(const Request &Request, const DIGlobal &Global) { in print() argument
204 StringRef Name = Global.Name; in print()
208 OS << Global.Start << " " << Global.Size << "\n"; in print()
209 if (Global.DeclFile.empty()) in print()
212 OS << Global.DeclFile << ":" << Global.DeclLine << "\n"; in print()
342 void JSONPrinter::print(const Request &Request, const DIGlobal &Global) { in print() argument
344 {{"Name", Global.Name != DILineInfo::BadString ? Global.Name : ""}, in print()
345 {"Start", toHex(Global.Start)}, in print()
346 {"Size", toHex(Global.Size)}}); in print()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp21 case Global: in markDefined()
46 case Global: in markGlobal()
48 S = (Attribute == MCSA_Weak) ? UndefinedWeak : Global; in markGlobal()
61 case Global: in markUsed()
158 case RecordStreamer::Global: in flushSymverDirectives()
177 case RecordStreamer::Global: in flushSymverDirectives()
/freebsd/sys/contrib/device-tree/Bindings/arm/marvell/
H A Dmarvell,dove.txt9 * Global Configuration registers
11 Global Configuration registers of Dove SoC are shared by a syscon node.
15 - reg: base address and size of the Global Configuration registers.
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h71 uint64_t getNumber(GlobalValue* Global) { in getNumber() argument
74 std::tie(MapIter, Inserted) = GlobalNumbers.insert({Global, NextNumber}); in getNumber()
80 void erase(GlobalValue *Global) { in erase() argument
81 GlobalNumbers.erase(Global); in erase()
/freebsd/sys/contrib/dev/acpica/components/events/
H A Devmisc.c288 Info->Notify.Global = &AcpiGbl_GlobalNotify[HandlerListId]; in AcpiEvQueueNotifyRequest()
332 if (Info->Notify.Global->Handler) in AcpiEvNotifyDispatch()
334 Info->Notify.Global->Handler (Info->Notify.Node, in AcpiEvNotifyDispatch()
336 Info->Notify.Global->Context); in AcpiEvNotifyDispatch()
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyMCInstLower.cpp47 const GlobalValue *Global = MO.getGlobal(); in GetGlobalAddressSymbol() local
48 if (!isa<Function>(Global)) { in GetGlobalAddressSymbol()
49 auto *WasmSym = cast<MCSymbolWasm>(Printer.getSymbol(Global)); in GetGlobalAddressSymbol()
53 if (WebAssembly::isWasmVarAddressSpace(Global->getAddressSpace()) && in GetGlobalAddressSymbol()
58 Type *GlobalVT = Global->getValueType(); in GetGlobalAddressSymbol()
67 const auto *FuncTy = cast<FunctionType>(Global->getValueType()); in GetGlobalAddressSymbol()
74 const auto *const F = dyn_cast<Function>(Global); in GetGlobalAddressSymbol()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerOptions.h18 Global, ///< Append to llvm.global_dtors enumerator
25 Global enumerator
H A DAddressSanitizer.h43 AsanDtorKind DestructorKind = AsanDtorKind::Global,
44 AsanCtorKind ConstructorKind = AsanCtorKind::Global);
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.h48 for (Global *G : Globals) in ~Program()
178 class Global {
182 Global(Tys... Args) : B(std::forward<Tys>(Args)...) {} in Global() function
203 std::vector<Global *> Globals;
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLogProperties.td5 Global,
9 Global,
/freebsd/sys/contrib/device-tree/Bindings/timer/
H A Dsamsung,exynos4210-mct.yaml67 0: Global Timer Interrupt 0
68 1: Global Timer Interrupt 1
69 2: Global Timer Interrupt 2
70 3: Global Timer Interrupt 3
80 minItems: 5 # 4 Global + 1 local
81 maxItems: 20 # 4 Global + 16 local
H A Darm,global_timer.yaml7 title: ARM Global Timer
13 Cortex-A9 are often associated with a per-core Global timer.
/freebsd/sys/contrib/device-tree/Bindings/mailbox/
H A Dmediatek,gce-mailbox.yaml7 title: Mediatek Global Command Engine Mailbox
13 The Global Command Engine (GCE) is used to help read/write registers with
46 - description: Global Command Engine clock
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTargetProperties.td11 Global,
86 Global,
180 Global,
202 Global,
215 Global,
219 Global,
226 Global,
230 Global,
234 Global,
247 Global,
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugCrossExSubsection.cpp36 uint32_t Global) { in addMapping() argument
37 Mappings[Local] = Global; in addMapping()
/freebsd/contrib/file/magic/Magdir/
H A Dsysex152 >>>4 byte 0x04 GLBR (Global Parameter Request)
153 >>>4 byte 0x14 GLBD (Global Parameter Dump)
154 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change)
155 >>>4 byte 0x34 GLBQ (Global Parameter Parameter Inquiry)
176 >>>4 byte 0x04 GLBR (Global Parameter Request)
177 >>>4 byte 0x14 GLBD (Global Parameter Dump)
178 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change)
194 >>>4 byte 0x04 GLBR (Global Parameter Request)
195 >>>4 byte 0x14 GLBD (Global Parameter Dump)
196 >>>4 byte 0x24 GLBP (Global Parameter Parameter Change)
[all …]
/freebsd/secure/caroot/trusted/
H A DTrustwave_Global_ECC_P256_Certification_Authority.pem2 ## Trustwave Global ECC P256 Certification Authority
20 … = Illinois, L = Chicago, O = "Trustwave Holdings, Inc.", CN = Trustwave Global ECC P256 Certifica…
24 … = Illinois, L = Chicago, O = "Trustwave Holdings, Inc.", CN = Trustwave Global ECC P256 Certifica…
/freebsd/sys/contrib/device-tree/Bindings/arm/npcm/
H A Dnuvoton,gcr.yaml7 title: Global Control Registers block in Nuvoton SoCs
14 The Global Control Registers (GCR) are a block of registers in Nuvoton SoCs
/freebsd/sys/contrib/device-tree/Bindings/soc/nuvoton/
H A Dnuvoton,npcm-gcr.yaml7 title: Global Control Registers block in Nuvoton SoCs
14 The Global Control Registers (GCR) are a block of registers in Nuvoton SoCs

12345678910>>...16